May 23, 2008 #1 SCantoria Programmer Sep 23, 2005 100 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 Apr 13, 2006 5,416 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 Jan 7, 2004 8,172 US Session varaibles, query strings, cross page post.... Upvote 0 Downvote
May 23, 2008 Thread starter #4 SCantoria Programmer Sep 23, 2005 100 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 Apr 8, 2006 728 US Use one of the methods that jbenson mentioned Upvote 0 Downvote