Tagged Questions
4
votes
2answers
2k views
asp button and history back onclientclick
hi I have an asp button like this
<asp:Button ID="btnBack" OnClientClick='javascript:history.back()' runat="server" Text="back">
</asp:Button>
now the javascript doesn't work to go a ...
2
votes
2answers
1k views
Why can't you UnRegisterStartupScript?
Seems to me it is a bit wierd that you can do..
Page.ClientScript.RegisterStartupScript(this.GetType(), "KeyName", "alert('changed my mind')", true);
And then later on you can't unregister or stop ...
1
vote
1answer
247 views
Set focus on an asp.net control on Page Load
I want to set focus on a control when page is loaded.
I wrote this code but not working..
protected void setFocus(System.Web.UI.Control ctrl)
{
string s = "<SCRIPT ...
0
votes
2answers
778 views
Fetch JS return value in server side page_load event in asp.net
I have an aspx master/content page scenario. The parent page has an IFrame which points to a child.aspx. The child.aspx has a checkbox, On page_load of child.aspx, I want to show/hide the checkbox ...