ASP page value passing

Source: Internet
Author: User

 

This section describes how to pass values on ASP. NET pages. The example in this article is very simple. It only contains one text box and several buttons. When a button is clicked, the strings in the text box will be passed to another page in different ways.

SessionVariable

SessionVariable value passing is the most common method. This method not only transfers values to the next page, but also cross-transmits values to multiple pagesSessionThe value of the variable disappears after being removed.

Protectedvoid

AvailableSessionAdd method

Session["Name"] = TxtName. Text;

AvailableSession. Add ("Name", TxtName. Text );

Session["Email"] = TxtEmail. Text;

AvailableSession. Add ("Email", TxtEmail. Text );

Protectedvoid

Session["Name"]. ToString ();

Session["Email"]. ToString ();

Clear after useSessionValue in

SessionTransmits numeric values. This method consumes server resources and is used as few as possible.

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.