May 23, 2008 #1 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
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
May 23, 2008 #2 AlexCuse Programmer Joined Apr 13, 2006 Messages 5,416 Location US how are you moving to the next page? [small]----signature below----[/small] Majority rule don't work in mental institutions My Crummy Web Page Upvote 0 Downvote
how are you moving to the next page? [small]----signature below----[/small] Majority rule don't work in mental institutions My Crummy Web Page
May 23, 2008 1 #3 jbenson001 Programmer Joined Jan 7, 2004 Messages 8,172 Location US Session varaibles, query strings, cross page post.... Upvote 0 Downvote
May 23, 2008 Thread starter #4 SCantoria Programmer Joined Sep 23, 2005 Messages 100 Location US 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 Upvote 0 Downvote
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
May 23, 2008 #5 tperri Programmer Joined Apr 8, 2006 Messages 728 Location US Use one of the methods that jbenson mentioned Upvote 0 Downvote
May 23, 2008 Thread starter #6 SCantoria Programmer Joined Sep 23, 2005 Messages 100 Location US Thanks.. Upvote 0 Downvote