vote up 0 vote down star

I want use ajax.net to do some js. like below:

ScriptManager.RegisterStartupScript(Submit, typeof(Button), "alert", "location.href='test.aspx';", true);

If user turn off the javascript, it will not redirect to another page.

I want to know how to set <noscript></noscript>.

Thanks a lot!!

flag

2 Answers

vote up 1 vote down check

Here:

<noscript>
  <meta http-equiv="refresh" content="0; URL='no-script.aspx'">
</noscript>
link|flag
vote up 0 vote down

I would use Response.Redirect("test.aspx") which does not require JavaScript and should be supported by most of the modern browsers.

link|flag

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.