Hi,
I have a asp page that updates multiple records to my DB I the want to redirect to another page to view the records with the updated data, I want to create one view page that will be accessed by 10 others depending on a Due Date and also a machine name however I cannot get the syntax of the Response.Redirect right could someone help ??
This is my code at the moment
and what i need is to add another querystring based on the field value "MCName", this is what i have tried
Regards
Paul
I have a asp page that updates multiple records to my DB I the want to redirect to another page to view the records with the updated data, I want to create one view page that will be accessed by 10 others depending on a Due Date and also a machine name however I cannot get the syntax of the Response.Redirect right could someone help ??
This is my code at the moment
Code:
Response.Redirect "MCDetailsAsahis.asp?DueDate=" & Request.QueryString("DueDate")
and what i need is to add another querystring based on the field value "MCName", this is what i have tried
Code:
Response.Redirect "MCDetailsAsahis.asp?DueDate=" & Request.QueryString("DueDate")& "MCName=" & Request.QueryString("MCName")
Regards
Paul