Dear all,
i have created a javascript function correctinput() and calling the same in asp .net content page on page load event.
below is javascript function code
function correctinput()
{
var trainingid = prompt("Please Enter Training Id Provided to you", " ");
window.location.href = 'Feedback.aspx?Trainingid=' + trainingid;
}
and code behind is
protected void Page_Load(object sender, EventArgs e)
{
ClientScript.RegisterStartupScript(GetType(), "Javascript", "javascript:correctinput(); ", true);
}
but still function is not being calledplease help me

Francis SusaimichaelPosted Nov 1, 2015, 6:34 AM
{
ClientScript.RegisterStartupScript(GetType(), "Javascript", "javascript:correctinput(); ", true);
Gowtham KPosted Nov 1, 2015, 5:08 AM