Ask a Question related to ASP.NET General, Design and Development.
-
Tobe #1
Entering Info on One Page, used in 2nd Page
Where can I find information about how to enter
information on one page and the close it and update the
input information onto the second page?
Tobe Guest
-
Page Info
I created an Imposition program to Impose Pages with IAC and Javascript. The next step what I want to achieve is: Checking if an individual page has... -
Page info bug strikes again!
First off, if you're not familiar with this issue check out these posts: AlFerrari, ""Page information" shifts pages under 5 inches" #1, 14 Mar... -
Printing Page Info
I have a problem printing file info out of Adobe Acrobat 6.0.2. I am running on a Dual 1.25GHz G4 with OS X 10.3.5 and 512MB of RAM. This was also... -
info from Active Directory on ASP page
Hello group I am not really sure which group to post to - apologies if I have it wrong. User logs on to the network on a WinXP client with... -
Jump to a page without entering the page number
I want to add menu options to my pdf file by allow the reader to click on a menu item and then jump to a particular page. e.g. menu item 1, page 3,... -
Steve C. Orr, MCSD #2
Re: Entering Info on One Page, used in 2nd Page
Here's a nice, simple way to pass values from one page to another:
(VB.NET code)
'Add data to the context object before transferring
Context.Items("myParameter") = x
Server.Transfer("WebForm2.aspx")
Then, in WebForm2.aspx:
'Grab data from the context property
Dim x as Integer = CType(Context.Items("myParameter"),Integer)
Of course there are a number of ways to pass values from one page to
another, such as using the querystring, cookies, session,
context, saving to a temporary table in the database between each page, etc.
You'll have to decide which technique is best for your application.
Here are several good articles on the subject to help you decide.
[url]http://msdn.microsoft.com/msdnmag/issues/03/04/ASPNETUserState/default.aspx[/url]
[url]http://www.aspalliance.com/kenc/passval.aspx[/url]
[url]http://www.dotnetjunkies.com/tutorials.aspx?tutorialid=600[/url]
[url]http://www.dotnetbips.com/displayarticle.aspx?id=79[/url]
--
I hope this helps,
Steve C. Orr, MCSD
[url]http://Steve.Orr.net[/url]
"Tobe" <tobep@vantagecontrols.com> wrote in message
news:08e301c344a3$d28d9d00$a001280a@phx.gbl...> Where can I find information about how to enter
> information on one page and the close it and update the
> input information onto the second page?
Steve C. Orr, MCSD Guest



Reply With Quote

