Tagged Questions

3
votes
2answers
603 views

Programmatically modifying an embedded resource before registering/referencing it on the page

Firstly, "Modifying" may be the wrong term, I see a few people have posted online just asking whether they can actually modify an embedded resource. What I am wanting to to, is use a resource in my ...
3
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
231 views

Receiving System.FormatException after using ClientScript

I'm trying to code an onclick behaviour for a GridView by using the following codebehind-code: protected void gridProcesses_RowDataBound(object sender, GridViewRowEventArgs e) { if (e.Row.RowType ...
1
vote
4answers
2k views

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

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, EventArgs e) { ...
0
votes
1answer
175 views

Setfocus() in master page

i have the set focus in property which i am trying to use in the masterpage but unable to do so. public partial class Site1 : System.Web.UI.MasterPage { protected void Page_Load(object sender, ...
0
votes
2answers
855 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 ...