I'm currently trying to register a JS function call from a .NET page which simply calls a small function on the .aspx page that will close the window.
The RegisterClientScriptBlock code is like this:
Page.ClientScript.RegisterClientScriptBlock (typeof(Page), "closeBox", "<script type='text/javascript'>closeBox();</script>");
This sor...
i am creating a different script at every postback whether Async or not
and i am registering it with this code
inside pageload
ScriptManager.RegisterStartupScript(this.Page, this.Page.GetType(), "deneme",srJavaScript, true);
but the problem is page is only executing first time registered script after
AsyncPostBack
i really need h...
Hi.
Can somebody look at the below code and tell me what I am doing wrong.
for(i=0;i<=Request.Files.Count;i++)
{
int percentComplete = (int)Math.Ceiling((double)(i + 1) / (double)Request.Files.Count * 100);
string message = string.Format("{0} of {1} uploaded", i + 1, Request.Files.Count);
ScriptManager.RegisterStartupScript(this, t...
My situation is this:
I have created a utility class on my solution that uses a method that uses jquery registered code to setfocus on a control.
The problem:
Using WebResources in a class thats is not a control simply dont work, i endup getting a empty script source references... something like this(script src="/WebSite/WebResource.a...
Basically, I have a gridview that is opened in a new window from the parent window. It has a bunch of records with a view button to view the details of each record (which stays in the same newly opened window). I have a calendar in the parent window that accepts a Date querystring parameter to set the current date on the calendar at page...
I'm trying to call ScriptManager.RegisterStartupScript from page "A" so that when page "B" loads it displays an alert, but can't figure out how to get a reference to page "B" to satisfy the Control argument in the method call.
I figure there's got to be something similar to Page.FindControl() that does this, but I'm stuck...
...
OK - so am working on a system that uses a custom datepicker control (I know there are other ones out there.. but for consistency would like to understand why my current issue is happening and fix it).
So its a custom user control with a textbox and on Page_PreRender does this:
protected void Page_PreRender(object sender, EventArgs e)
...
Okay, I've gotten a unique issue I've been trying to solve for two days.
I have System.Web.UI.WebControls.WebParts.WebPart control I am building a custom Sharepoint View with. Almost everything I want done is working except one little issue. I need to use Javascript to Format Date and Currency fields. The Client wants DateTime field...
I have the following line of code:
ScriptManager.RegisterStartupScript(this, typeof(string), "print", "javascript:window.open('Print.aspx');", true);
This opens up the popup window in Firefox and IE, but not Chrome. Normally, I would use onClientClick on the button, which works fine on all browsers. In this case, however, I have to do...
Hi Guys,
My page has a submit button on it (server-side button).
Here's my code for the click event:
protected void SubmitButton_Click(object sender, EventArgs e)
{
db.SaveSomething();
Page.ClientScript.RegisterStartupScript("someScriptWhichReliesOnServerData");
Response.Redirect("SomeOtherPage.aspx");
}
Now, the problem...