Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
527 views

dynamic Javascript in asp.net

well. The problem i'm facing is i have my own custom control and i do a query , get records and dynamically add html controls to the page based on the data. Now there's the problem of adding some ...
3
votes
1answer
1k views

RegisterStartupScript doesn't appear to be working on page postback within update panel

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 ...
2
votes
1answer
227 views

Javascript is not working when used with UpdatePanel

I placed the following code in two pages. A simple aspx page, there it worked well. A page contains a lot of controls and Update Panels. There the code did not work. So I experimented with ...
2
votes
3answers
445 views

ASP.NET/JavaScript - Script Registration/Redirection Problem

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(); ...
1
vote
0answers
123 views

RegisterStartupScript in User Control does not reload/ rewrite Javascript

UPDATE Summary of the problem: There are 6 Dynamic UCs which are generated and each has its own custom JS which is injected using RegisterStartUpScript on Page Init of UC Only the 1st time the ...
1
vote
3answers
403 views

Incomplete JS script tag with RegisterClientScriptBlock

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: ...
0
votes
1answer
55 views

RegisterStartupScript in Usercontrol Postback Events

I have created a static method to display a popup on my website from both pages and usercontrols. The method does not care if there is a script manager or update panel on the page. At the moment the ...
0
votes
1answer
64 views

SetFocus from MasterPage of a Content page TextBox

I am Using a "gamabhana" Language script to enter text in "Marathi" Language in TextBox which is on Content Page and i need set focus before load due to following error:- Error: Microsoft JScript ...
0
votes
0answers
200 views

Issue with Colorbox jQuery Plugin and IE. Using colorbox.load to reload the modal after AJAX update

I'm having a very difficult issue with the colorbox plugin that I hope someone can help with. Here's a replicated stripped down version of whats going on. The issue does not appear in Chrome or ...
0
votes
1answer
124 views

Will ClientScript.RegisterStartupScript work only in forms?

I am trying to execute some javascript code in my aspx code behind file. All the examples i have seen on the internet involves code in handler of a button click... But, for my need, i need to use ...
0
votes
1answer
102 views

Javascript not executing from ASP.NET

Please look at this code and find out why it isnt working. I am not getting an alert in the webpage. But, the console.writeLine beneath it is getting executed. private void PublishLoop() { ...
0
votes
1answer
461 views

ASP.NET get textbox value filled from Javascript in Load or Unload Event

simply, i have an ASP.net Textbox inside a webcontrol it gets filled by a javascript function inside the same markup of the webcontrol the problem is that i need to read that value from the ...
0
votes
3answers
288 views

How to conditionally register window.setInterval during onload

I have the following jquery that registers a timer interval to occur every 10 seconds on the webpage whenever an input button called btnExport is clicked. if ($) { $(document).ready(function () ...
0
votes
1answer
432 views

Value cannot be null. Parameter name: control

I used to have the UpdatePanel as a wrapper for the whole Listview item. <asp:UpdatePanel ID="UpdatePanel1" runat="server"> <ContentTemplate> <asp:ListView ID="ListView1" ...
0
votes
1answer
201 views

How can i add my script from code behind to end of the file

I have script for Google Analytics in my master page at the bottom of the page. it is just below the tag..... from the code behind i need to push some information to the google analytics. using the ...
0
votes
1answer
108 views

Resgistering javascript in a usercontrol

I am trying to use google maps and for that I have made a usercontrol where I am trying to register a javascript, but again like always it did not get registered, so I tried to register it code behind ...
0
votes
0answers
641 views

How do i open popup window in C# ASP.Net application for Chrome? (RegisterStartupScript not working)

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 ...
0
votes
1answer
1k views

Sharepoint Custom WebPart Startup Script

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 ...
0
votes
3answers
127 views

ASP.NET: how to get a reference to page “B” from page “A” codebehind?

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 ...
0
votes
1answer
2k views

Pass parameter as text to JavaScript function from .NET code-behind

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 ...
0
votes
2answers
2k views

Client method called by ScriptManager.RegisterStartupScript not firing

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 ...