How To Use Query Strings In ASP.NET

ASP.NET QueryString

A query string is a collection of characters input to a computer or web browser. A Query String is helpful when we want to transfer a value from one page to another. When we need to pass content between the HTML pages or aspx Web Forms in the context of ASP.NET, a Query String is very easy to use and the Query String follows a separating character, usually a Question Mark (?). It is basically used for identifying data appearing after this separating symbol. A Query String Collection is used to retrieve the variable values in the HTTP query string. If we want to transfer a large amount of data then we can't use the Request.QueryString. Query Strings are also generated by form submission or can be used by a user typing a query into the address bar of the browsers. Query Strings are contained in request headers. A Query String collection is a parsed version of the QUERY_STRING variable in the Server Variables collection. It enable us to retrieve the QUERY_STRING variable by name. When we use parameters with Request.QueryString, the server parses the parameters sent to the request and returns the effective or specified data.

Syntax of Query String

Request.QueryString(variable)[(index).count].

Step 1

Start Visual Studio.

Start Visual Studio

Figure 1: Start Visual Studio

Step 2

Now for creating a website, click on the file, go to new and click on the website.

Create Website

Figure 2: Create Website

Step 3

Now we add the two web forms to the website.

Add Webform

Figure 3: Add Web form

Step 4

We design the web form as in the following,

Design form

Figure 4: Design form

Step 5

After designing the web form, we need to write the following code in the button click. 

protected void Button1_Click(object sender, EventArgs e)   
{  
    Response.Redirect("default2.aspx ?firstname=" + TextBox1.Text + "&lastname=" + TextBox2.Text);  
}

Step 6

In the second web form we take the one lable for displaying the values of the first page. For receiving the value from the first page we write the following code on the page_load of the second page.

protected void Page_Load(object sender, EventArgs e)   
{  
    string firstname = Request.QueryString["firstname"];  
    string lastname = Request.QueryString["lastname"];  
    Label1.Text = "welcome" + firstname + " " + lastname;  
}

Step 7

Now we need to execute the website by using the F5 key. After execution we give the input in the textboxes like this,

Execute Web Form

Figure 5: Execute Web Form

Input in the Textboxes

Figure 6: Input in the Textboxes

Step 8

After giving the values, we click on the Submit button then the following window will appear.

QueryString in ASP.Net

Figure 7: Final Window

Summary

In this article, I explained how to use Query Strings in ASP.NET, now you can easily do these operations in your projects for transferring a value of one page to another page.

I hope this article will be helpful for beginners if they want to transfer data from one page to another.


Similar Articles