[C # + ASP. NET] ASP. NET cross-page value transfer skill Summary

Source: Internet
Author: User
★1. Use querystring variable
Querystring is a simple method for transferring values. It can display the transmitted values in the address bar of a browser. This method can be used to transmit one or more numeric values with low security requirements or simple structure. However, this method cannot be used to pass arrays or objects. The following is an example:
A. aspx C # Code
Private void button#click (Object sender, system. eventargs E)
{
String s_url;
S_url = "B. aspx? Name = "+ label1.text;
Response. Redirect (s_url );
}

B. C # code in aspx
Private void page_load (Object sender, eventargs E)
{
Label2.text = request. querystring ["name"];
}

★2. Use the application object variable
The scope of the Application object is global, that is, it is valid for all users. The common methods are lock and unlock.
A. aspx C # code
Private void button#click (Object sender, system. eventargs E)
{
Application ["name"] = label1.text;
Server. Transfer ("B. aspx ");
}

B. C # code in aspx
Private void page_load (Object sender, eventargs E)
{
String name;
Application. Lock ();
Name = application ["name"]. tostring ();
Application. Unlock ();
}

★3. Use session Variables
Presumably, this is definitely the most common usage. Its operations are similar to those of the application, which act on individual users. Therefore, excessive storage will result in the depletion of server memory resources.
A. aspx C # code
Private void button#click (Object sender, system. eventargs E)
{
Session ["name"] = label. text;
}

B. C # code in aspx
Private void page_load (Object sender, eventargs E)
{
String name;
Name = session ["name"]. tostring ();
}

★4. Use cookie object variables
This is also a common method. Like session, it is for every user, but there is a fundamental difference, that is, cookies are stored on the client, session is stored on the server. In addition, the use of cookies should be used in combination with the ASP. NET built-in Object Request.

A. aspx C # code
Private void button#click (Object sender, system. eventargs E)
{
Httpcookie cookie_name = new httpcookie ("name ");
Cookie_name.value = label1.text;
Reponse. appendcookie (cookie_name );
Server. Transfer ("B. aspx ");
}

B. C # code in aspx
Private void page_load (Object sender, eventargs E)
{
String name;
Name = request. Cookie ["name"]. value. tostring ();
}

★5. Use the server. Transfer Method
This can be said to be the method used for face object development. It uses server. the transfer method directs the process from the current page to another page. The new page uses the response stream of the previous page. Therefore, this method is completely object-like and concise and effective.
A. aspx C # code
Public string name
{
Get {return label1.text ;}
}
Private void button#click (Object sender, system. eventargs E)
{
Server. Transfer ("B. aspx ");
}

B. in aspx, C # Code
private void page_load (Object sender, eventargs e)
{< br> A newweb; // instance a form
newweb = (a) context. handler;
string name;
name = newweb. name;
}

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.