Tagged Questions

0
votes
0answers
30 views

Using Page.ClientScript.RegisterStartupScript doesn’t appear to work after Server.Transfer

This should be a fairly simple question At some point in my code I am doing a Server.Transfer to a different page In the new page, there is a call (the details are irrelevant) …
1
vote
2answers
126 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
4answers
471 views

Can’t get no javascript to execute on an ASP.NET user control

Hello, I'm trying to do the simplest thing, to show an alert popup through javascript from my code-behind of a user control (ascx.cs). I've tried protected void btnSave_Click(object sender, …
3
votes
1answer
725 views

How do I convert an ASP.NET page using Ajax webmethods to an Ajax-enabled servercontrol?

In this tutorial I am reading, Dave Ward creates a page that shows the server date in a label without using the update panel. I am trying to learn how to create servercontrols that use ajax for …