Submitting Web Form data from one ASP.NET page to another
4397Submitting Web Form data from one ASP.NET page to anotherhttp://www.stardeveloper.com/articles/display.html?article=2003061901&page=This article discusses different options you as a developer have in ASP.NET to send data from one ASP.NET page to another. Since you cannot use ASP.NET Web Controls (System.Web.UI.WebControls) in such a scenario (which only allow posting back of data to the same page), this article discusses other ways like using HttpContext objectASP.NET > Tips and TutorialsOct 10, 2006
If the developer wants to display only selected data in a page, the query for the SqlDataSource control will have to be modified. The first step in this process is to add a Textbox control where the users can enter the filter condition. The filter condition then becomes the parameterized filter (WHERE clause).
Most programmers are used to passing data in methods as input and output parameters. Imagine a scenario where you wish to pass methods around to other methods instead of data. Amazed! Read further.
TheCodeBehind is a combination blog and resource site for programmers and developers to share code, learn from each other and blog about whatever interests them. The site includes some great features such as members advertising on their blogs and resources, and being able to add languages to the main site themselves! Languages currently on the site include asp, asp.net, asp.net 2.0, c, c#, c++, java, javascript, jscript, jscript.net, perl, php, python, vb, vb.net and vbscript!
The stateless HTTP protocol treats each page request independently and the server is unaware of the variable values of the earlier request. The session state is a dictionary based API that is used by developers to store user specific data for the duration of the session. The session state is enabled by default for all ASP.NET applications. In ASP.NET 2.0
Joining mailing list will entitle you
to receive occasional emails informing you of news and
updates to the site and any special offers that may be
of interest to you.