Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How do I pass information from one page to another? 1

Status
Not open for further replies.

SCantoria

Programmer
Joined
Sep 23, 2005
Messages
100
Location
US
If I am working on one project page and I want the project name to pass to the next page, what would be the best way to do this?

Thanks,

Steve
 
how are you moving to the next page?

[small]----signature below----[/small]
Majority rule don't work in mental institutions

My Crummy Web Page
 
Session varaibles, query strings, cross page post....
 
currently I am using the syntax below to open the other page.

<a href="SendMail.aspx">email/SendMail.aspx</a>

What I am trying to accomplish is to populate the fields below when the page opens.

mailMessage.From = txtSender.Text;
mailMessage.Subject = txtSubject.Text;

Thanks,

Steve
 
Use one of the methods that jbenson mentioned :)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top