G
Ganesh Ramamurthy
Hi Mark,
You can try this....
After your form tag in your aspx file type the folloowing
......
</form>
<script language="javascript">
<asp:literal runat="server" id="ltScript"></asp:literal>
</script>
In your code behind do the following
Literal ltScript = (Literal) Page.FindControl("ltScript");
ltScript.Text = "window.open('http://MyURL/MyPage.aspx','name','options');"
Regards
Ganesh
You can try this....
After your form tag in your aspx file type the folloowing
......
</form>
<script language="javascript">
<asp:literal runat="server" id="ltScript"></asp:literal>
</script>
In your code behind do the following
Literal ltScript = (Literal) Page.FindControl("ltScript");
ltScript.Text = "window.open('http://MyURL/MyPage.aspx','name','options');"
Regards
Ganesh