Eray Geveci
Eray Geveci

Reputation: 1123

Passing Values to a Textfield from another ASP Page

i have a page which show the count of the members in a textfield. And a second page where i can add members in a list. i saved the count of the member from the second page in an integer but how can i transfer it to the first page to show the result in a textfield?

the second page is in a frame from the first page.

i hope you can help me.

Upvotes: 0

Views: 213

Answers (1)

Steven Ackley
Steven Ackley

Reputation: 591

You need to use Session State to transfer variables to another page http://msdn.microsoft.com/en-us/library/ms178581(v=vs.100).aspx

Upvotes: 1

Related Questions