Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
3
votes
2answers
577 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
1answer
1k 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 ...
2
votes
2answers
37 views

Way to find out which button is submitting page?

I have a function tied to ClientScript.RegisterOnSubmitStatement that displays a JQuery UI dialog while an UpdatePanel is updating (it takes a while to update). There are 2 buttons on the page, and ...
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
243 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 ...
1
vote
1answer
216 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
0answers
567 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
4answers
1k 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
165 views

Can i Use System.Web.UI.Page.ClientScript in ASp.Net MVC?

I am Trying to Register STart up Script in my ASP.Net MVC 3.0 I know I can use this syntax in VB.Net But not sure if i can use it in MVC ...
0
votes
2answers
41 views

Problem reseting a form on client side with ASP.NET

I'm trying to reset my form using javascript on client side. The code looks like this: <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default2.aspx.cs" Inherits="Default2" %> ...
0
votes
1answer
155 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
273 views

Facebox images don't show when using asp.net ClientScript

I'm using FaceBox in an ASP.net project. It works great when I call it from a hard-coded script block in the ASPX page like this: <script type="text/javascript"> ...
0
votes
2answers
766 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 ...
0
votes
1answer
219 views

How do I combine alert popup in save as file function in asp.net?

I'm tring to write a function that need to save a file (in csv) and has a condition. it's something like that: If the file is small then 1MB then I want to pop up an alert in javascript and then ...
0
votes
2answers
129 views

At what asp.net page event are clientIDs assigned?

I want to do something like this: Panel divPanel = new Panel(); divPanel.ID = "divPanel"; this.Page.Controls.Add(divPanel); string script = "function alertID(){alert("the id is: ...