Tagged Questions
The clientscriptmanager tag has no wiki summary.
6
votes
3answers
3k views
.net - How do you Register a startup script?
I have limited experience with .net. My app throws an error this.dateTimeFormat is undefined which I tracked down to a known ajax bug. The workaround posted said to:
"Register the following as a ...
1
vote
1answer
494 views
ASP.NET - How do I register multiple JavaScript calls to run on PostBack?
I have an ASP.NET page with two instances of the same Web User Control (a simple WYSIWYG editor). On submit, the WUCs do a little JavaScript magic and then proceed with a normal postback.
The first ...
1
vote
1answer
3k views
ClientScriptManager.RegisterForEventValidation with HiddenField
I am trying to use to use ClientScriptManager.RegisterForEventValidation to register a hidden field and value that I am adding with ClientScriptManager.RegisterHiddenField. I doing this during the ...
1
vote
2answers
876 views
ASP.NET master pages order of adding scripts
I have a master page that adds the jquery library via a registerclientscriptinclude:
Page.ClientScript.RegisterClientScriptInclude(this.GetType(),
"JQuery",
...
0
votes
1answer
31 views
jQuery trigger click on aspx page is not working
my ASPX Markup is as below
<a id="lnkLogin" href="javascript:__doPostBack('ctl00$LoginReg1$lnkLogin','')">Login</a>
And my function is as below
function LogOut() {
...
0
votes
1answer
161 views
Is there a System.Web.UI.ClientScriptManager method that registers scripts inside the <head> tag?
I know it's strictly OK to put <script> tags in the body, but in the interest of neatness I'd like to use System.Web.UI.ClientScriptManager to register a script in the <head> of my page. ...
0
votes
1answer
656 views
ASP.Net & jQuery - closing a popup
I want to close a ShadowBox popup when the user clicks a button. The popup is showing a separate page in an Iframe.
This works fine with a clients-side event on the Cancel button control, e.g.
...
0
votes
1answer
303 views
Unable to RegisterStartupScript from an execution other than Page_Load
I use ScriptManager.RegisterStartupScrit from Page_Load and it works perfect.
When I move the same line to the Page_Unload event, it doesn't work; the script is not registered.
Any suggestions??