Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6997545
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T20:17:49+00:00 2026-05-27T20:17:49+00:00

I am creating a simple web application. But I am facing a problem with

  • 0

I am creating a simple web application.
But I am facing a problem with a Gridview that displays some data from the database in a column and i have another column with a buttons where I want to invoke a stored procedure.
However the stored procedure takes as input the value of the corresponding data in the other column, so my question is how to access the value of this column and pass it to the action listener of the corresponding buttonfield?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T20:17:50+00:00Added an answer on May 27, 2026 at 8:17 pm

    You could set it up as a Template field in the aspx page and pass in the Value of the field you want as an argument:

    <asp:GridView ID="grd" OnRowCommand="grd_RowCommand">
    <Columns>
    <asp:TemplateField>
    <ItemTemplate>
        <asp:LinkButton ID="btn" runat="server" Text="Click" CommandName="Click" CommandArgument='<%#Eval("FirstColumnFieldName") %>'/>
    </ItemTemplate>
    </asp:TemplateField>
    </Columns>
    </asp:GridView>
    

    And then in your code behind, you could do this:

    protected void grd_RowCommand(object sender, GridViewCommandEventArgs e)
    {
    switch (e.CommandName)
    {
        case "Click":
        {
            string FirstColumnValue = e.CommandArgument.ToString();
            hiddenfield.Value = FirstColumnValue;
            break;
        }
        default:
            break;
    }
    }
    

    You can find more solutions here

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I developed a simple .net application that scrapes some data from web and saves
I am interested in creating a simple web application that will take in user
Was creating a simple console application to do some prototyping and was shocked to
I'm creating a simple API that creates typed classes based on JSON data that
I am creating a simple application with Django. I realized that I am doing
I am creating a PHP based web application which requires simple authentication to use.
This is the situation I am facing. I have developed a web application that
I am creating a web application that acts as a priority list, allowing a
I am creating a simple Web Application in PHP for my college project. I
I am creating a simple HTTP client/server application on my local machine but I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.