How do I output the values from the form into a url like
confpage.asp?value=value&value2=value ?? Pass the values.
meaning:
Submit_click
addrecord
Response.redirect("confpage.asp?value=value&value2=value2")
end sub
Can someone please recommend a guide for how to do this.
THXHi,
Are you showing the confirmation page after doing the update or before doing the update?
If you are having 1,2 values, it would be better to pass them in querystring to the other page. If there are more values, then you would have problem in passing all of them through querystring.
Why would you need to show a confirmation page? Instead, you can get the confirmation in the same page itself right?
In asp.net passing values between pages is very difficult. Thats to Whidbey, the "action=newpagge" is back.
Thanks.
Hi,
In the aspx pagx page use 2 panels. One for data entry and another for confirmation. During data entry set visble property of confirmation panel to false. When you want to show confirmation set visible property of data entry panel to false.
Hope this helps
K.Baskar
0 comments:
Post a Comment