Response.Redirect("StudentMedical.aspx?sid=" + StudentID);
using jQuery
StudentID
public
var url = "http://StudentMedical.aspx?sid=" + <%= StudentID %>;
$(location).attr('href',url);
// HTTP redirect window.location.replace("http://yourdomian.com"); // like clicking on a link window.location.href = "http://yourdomian.com"; //or var url = "http://yourdomian.com"; $(location).attr('href',url);
var nextUrl = location.protocol + "//" + location.host + "/yourpage.aspx"?mappInfo=" + queryStringValue; window.open(nextFormUrl, '_self');
var url = "yourpage.aspx"; $(location).attr('href',url);
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)