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

  • Home
  • SEARCH
  • 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 6952815
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T14:23:51+00:00 2026-05-27T14:23:51+00:00

I have two web pages- the first is a GridView and the second is

  • 0

I have two web pages- the first is a GridView and the second is a FormView. I have been able to retrieve the DataKey value from the GridView and pass it to the FormView page. Now I need to use that key value for my selection query. How do I assign that value? Code example would help in C#.

This is my page_load code:

protected void Page_Load(object sender, EventArgs e)
{
    string CompanyStr = Server.HtmlEncode(Request.QueryString["param1"]);
    string ClientKey = Request.QueryString["param2"];

    Label lbl = FormView1.FindControl("CompanyID") as Label;
    lbl.Text = CompanyStr;
 }

And this is the FormView code:

<asp:FormView ID="FormView1" runat="server" DefaultMode="Insert" DataKeyNames="ClientKey"
    DataSourceID="SqlDataSource1" onitemcommand="onItemCommand">

The ClientKey is the variable that needs to be set.

  • 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-27T14:23:52+00:00Added an answer on May 27, 2026 at 2:23 pm

    It sounds like you want to use a Select Parameter in your SQLDataSource1 markup (the one referenced in your FormView declaration) to do this. This should work:

    <asp:SqlDataSource ID="SQLDataSource1" runat="server" 
        ConnectionString="Your Connection Strong" SelectCommand="SELECT * FROM [yourTableName] WHERE ClientKey = @ClientKey">
        <SelectParameters>
            <asp:QueryStringParameter Name="ClientKey" QueryStringField="param2" />
        </SelectParameters>
    </asp:SqlDataSource>
    

    Notice the WHERE clause in the SelectCommand property. I don’t know what the rest of your query looks like, but having that on the end should filter your FormView down to what you want.

    This should automatically pull the value from your query string, and your FormView will have the proper record loaded.

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

Sidebar

Related Questions

We have some web pages which have two frames, with one frame in the
I've been developing my first web based app for about two months now (I'm
Background: I have two web pages, one is a list of things, and the
I have two web pages which work basically the same, code-wise, but one of
I have a very simple ASP.NET project. It consists of two pages. The first
I have two fields on my web page ie: BookAuthor and BookDescription.On submit,the page
I have two web applications running in the same Tomcat Instance. In one of
I have two web applications in the same server like this: /basedir/app1path/default1.aspx /basedir/app2path/default2.aspx How
I have two web applications and both are developed in ASP.NET. Now I want
I have two web applications in the same solution. They both use different membership/profile

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.