Tagged Questions

88
votes
8answers
187k views

Change the selected value of a drop-down list with jQuery

I have a drop-down list with known values. What I'm trying to do is set the drop down list to a particular value that I know exists using jQuery. Using regular JavaScript, I would do something like: ...
67
votes
9answers
6k views

How do you get JavaScript/jQuery Intellisense Working in VS 2008?

I thought JQuery Intellisense was supposed to be improved with SP1. I even downloaded an annotated version of jquery 1.2.6, but intellisense will not work in a separate jscript file. I have the jquery ...
45
votes
8answers
42k views

How can I determine the element type of a matched element in jQuery?

I'm matching ASP.Net generated elements by ID name, but I have some elements which may render as text boxes or labels depending on the page context. I need to figure out whether the match is to a ...
37
votes
4answers
10k views

Difference between a Postback and a Callback

I keep on hearing this words 'callback' and 'postback' tossed around. What is the difference between two ? Is postback very specific to the ASP.NET pages ?
37
votes
13answers
74k views

Call ASP.NET Function From Javascript?

I'm writing a web page in ASP.NET. I have some Javascript, and I have a submit button with an onClick event. Is it possible to call a method I created in ASP with Javascript's onClick event?
34
votes
1answer
1k views

Javascript error when using Messenger Connect client-side library in ASP.NET

I'm having a problem implementing the new Messenger Connect functionality inside an existing Sitefinity site to enable client logins using Live IDs. Namely, when I'm using the following code to ...
30
votes
11answers
17k views

Good ASP.NET excel-like Grid control?

We are looking for an ASP.NET compatible data grid that allows for multi-line editing similar to Excel or a WinForms data grid. It must also support very basic keyboard input (tab, arrow keys, ...
30
votes
10answers
14k views

Detecting Unsaved Changes using JavaScript

I have a requirement to implement an "Unsaved Changes" prompt in an ASP .Net application. If a user modifies controls on a web form, and attempts to navigate away before saving, a prompt should ...
25
votes
9answers
9k views

Unobtrusive Javascript rich text editor?

We've used the no-longer-supported RichTextBox control as part of our (ASP.NET-based) CMS for a long time, and we'd like to replace it with something lighter-weight and with better cross-browser ...
24
votes
4answers
30k views

OnClick vs OnClientClick for an asp:CheckBox?

Does anyone know why a client-side javascript handler for asp:CheckBox needs to be an OnClick="" attribute rather than an OnClientClick="" attribute, as for asp:Button? For example, this works: ...
24
votes
3answers
12k views

How do I run different versions of jQuery on the same page?

My company has purchased a product that renders an ASP.NET control on the page. This control uses jQuery 1.2.3 and adds a script tag to the page to reference it. The developers of the control will not ...
24
votes
10answers
28k views

How do I add an additional window.onload event in Javascript

In my asp.net User Control I'm adding some script to the window.onload event like so: if (!Page.ClientScript.IsStartupScriptRegistered(this.GetType(), onloadScriptName)) ...
21
votes
9answers
25k views

How do I get the current location of an iframe?

I have built a basic data entry application allowing users to browse external content in iframe and enter data quickly from the same page. One of the data variables is the URL. Ideally I would like to ...
18
votes
2answers
12k views

Difference between RegisterStartupScript and RegisterClientScriptBlock?

Is the only difference between the RegisterStartupScript and the RegisterClientScriptBlock is that RegisterStartupScript puts the javascript before the closing tag of the page and ...
17
votes
7answers
2k views

Logging JavaScript-Errors on Server

Im running a ASP.NET Site where I have problems to find some JavaScript-Errors just with manual testing. Is there a possibility to catch all JavaScript-Errors on the Client Side and log them on the ...
16
votes
16answers
49k views

How do I Validate the File Type of a File Upload?

I am using <input type="file" id="fileUpload" runat="server"> to upload a file in an ASP.NET application. I would like to limit the file type of the upload (example: limit to .xls or .xlsx file ...
16
votes
8answers
23k views

How can I check for IsPostBack in JavaScript?

I need to run a JavaScript function onLoad(), but only do it if the page loaded the first time (i.e. is not the result of a postback). Basically, I need to check for IsPostBack in JavaScript. Thank ...
15
votes
4answers
2k views

What algorithm does Readability use for extracting text from URLs?

For a while, I've been trying to find a way of intelligently extracting the "relevant" text from a URL by eliminating the text related to ads and all the other clutter.After several months of ...
15
votes
18answers
979 views

What do you do with unused code in your legacy applications?

On huge legacy applications it is fairly common to see change in business rules leading to unused code. Is the deleting the best way? or Are there any standards of marking the unused code? SCM does ...
15
votes
4answers
12k views

Determine if page is valid in JavaScript - ASP.NET

What is the best way to determine if a form on an ASPX page is valid in JavaScript? I am trying to check the validation of an user control that was opened using the JavaScript ...
15
votes
4answers
10k views

Javascript before asp:ButtonField click

I have a "GridView" control in an Asp.net application, that has a <asp:buttonField> of type="image" and CommandName="Delete". Is there any way to execute a piece of javascript before reaching ...
14
votes
9answers
11k views

How to disable postback on an asp Button

I have an asp button. It's server-side so I can only show it for logged in users, but i want it to run a javascript function and it seems when it's runat="server" it always calls the postback event. ...
14
votes
5answers
19k views

How to call a client side javascript function after a specific UpdatePanel has been loaded

How is it possible to call a client side javascript method after a specific update panel has been loaded? Sys.WebForms.PageRequestManager.getInstance().add_endRequest(EndRequestHandler) does not work ...
14
votes
16answers
27k views

How can I force input to uppercase in an ASP.NET textbox?

I'm writing an ASP.NET application. I have a textbox on a webform, and I want to force whatever the user types to upper case. I'd like to do this on the front end. You should also note that there is a ...
14
votes
10answers
8k views

How can I get Gmail-like file uploads for my web app?

I want to add gmail-like file upload functionality for one of my projects. Can anybody help me with this? My application is built in vb.net. I would appreciate any kind of help or guidance. Thanks ...
13
votes
1answer
336 views

Why do script blocks grow endlessly in VS2010 Debugger when running ASP.Net page with partial postbacks?

On an ASP.Net page that uses an UpdatePanel containing various validated controls for partial postbacks, the Visual Studio 2010 script debugger window starts to show an ever growing list of "Script ...
13
votes
7answers
1k views

Microsoft's AJAX Toolkit vs. jQuery

Our team has been using Microsoft's AJAX Toolkit since the days of Atlas. In a bit of naivety we missed the jQuery/Prototype phenomenon until a month or two back. Until now, we have always ...
13
votes
4answers
5k views

Javascript serialization of DateTime in asp.net is not giving a javascript date object?

When I parse a DateTime to json in .Net it returns a string (i.e. "\/Date(1249335194272)\/"). How do I make it return a js Date object constructor not wrap in a string? // js server code var dteNow = ...
13
votes
6answers
11k views

Why does the javascript onchange event not fire if autocomplete is on?

I have a textbox with an onchange event. Why does this event not fire when the user uses the autocomplete feature to populate the textbox? I am working with Internet Explorer. Is there a standard and ...
13
votes
17answers
32k views

Sys is undefined

I have an ASP.Net/AJAX control kit project that i am working on. 80% of the time there is no problem. The page runs as it should. If you refresh the page it will sometimes show a javascript error ...
12
votes
6answers
577 views

Super fuzzy name checking?

I'm working on some stuff for an in-house CRM. The company's current frontend allows for lots of duplicates. I'm trying to stop end-users from putting in the same person because they searched for ...
12
votes
5answers
6k views

How to use dates in x axis with google chart api

Is there a way to plot a chart with google chart api so that the X-axis values are days in a month? I have data points that are not provided with the same frecuency. For example: Date - Value ...
12
votes
12answers
19k views

Disable browser's back button

How to disable browser's BACK Button (across browsers)?
12
votes
7answers
2k views

~/ equivalent in javascript

any smart way of doing a "root" based path referencing in javascript just the way we have ~/ in asp.net ?
12
votes
6answers
17k views

Reference asp.net control by ID in javascript?

When asp.net controls are rendered their ids sometimes change, like if they are in a naming container. Button1 may actually have an id of ctl00_ContentMain_Button1 when it is rendered, for example. I ...
12
votes
4answers
13k views

Moving items in Dual Listboxes

How can I move items from one list box control to another listbox control using JavaScript in ASP.NET?
12
votes
3answers
12k views

How do I make an onclientclick post back using jquery? asp.net

I need help. I want to recreate the the update panel postback without using a update panel to do the postback. What is the generic method for doing this? For example, on stackoverflow, when you ...
12
votes
13answers
3k views

What's the best HTML WYSISYG editor available to web developers and why?

There are many different flavored HTML WYSIWYG editors from javascript to ASP.Net web controls, but all too often the features are the same. Does anyone have a favorite HTML editor they like to use ...
12
votes
2answers
4k views

Combining and Caching multiple JavaScript files in ASP.net

Either I had a bad dream recently or I am just too stupid to google, but I remember that someone somewhere wrote that ASP.net has a Function which allows "merging" multiple JavaScript files ...
11
votes
9answers
351 views

How to make double click & single click event for link button of Asp.net control?

Consider the following: protected void dgTask_RowDataBound(object sender, GridViewRowEventArgs e) { if (e.Row.RowType == DataControlRowType.DataRow) { LinkButton btn = ...
11
votes
1answer
368 views

Can I programmatically save part of a web page as an image?

If possible, I would like to do this with a simple button. The users are not terribly comfortable with computers, which is why I haven't just told them to print screen or use the snipping tool. I ...
11
votes
4answers
2k views

jQuery Infinite Scroll and Gridview

suppose i have 10,000 records in database but i want to show 100 record in the page through gridview and i want when user scroll down and reach the last record in the page then rest of the 100 record ...
11
votes
5answers
3k views

jQuery DataTables server-side processing using ASP.NET WebForms

Problem: jQuery DataTables server-side processing using ASP.NET WebForms. Solution: Darin Dimitrov answered the question using an example which pages and sorts, but doesn't do any searching. Here's ...
11
votes
6answers
6k views

ASP.Net double-click problem

having a slight problem with an ASP.net page of mine. If a user were to double click on a "submit" button it will write to the database twice (i.e. carry out the 'onclick' method on the imagebutton ...
11
votes
3answers
20k views

How to get selected text from textbox control with javascript

I have a textbox and a link button. When I write some text, then select some of them and then click the link button, selected text from textbox must be show with a messagebox. How can I do it? ...
11
votes
5answers
15k views

Mobile Device Javascript/CSS Support. What's out there?

I'm about to begin an ASP.NET application that will be targeted towards iPhones, Blackberries, and Windows Mobile browsers. Aside from the iPhone, I haven't been able to find much information on what ...
10
votes
11answers
467 views

Is embeding CSS/jQuery code in C# code bad?

I see this type of code when looking through our working code base: private Button AddClearButton() { return new Button { OnClientClick = ...
10
votes
2answers
4k views

Javascript code in iframes in IE9 not working

I've a very complete site in ASP.NET wich uses iframes. I'm working to change an old control we'd been using to show dialogs to use jQuery UI dialogs. I'm also making sure everything works well in ...
10
votes
6answers
734 views

Page_ClientValidate() object expected error, cant find the validator

I have a form HomePage.aspx containing an empty asp:Panel, a dropdownlist letting the user pick an SPFielType... on index changed, my HomePage.aspx.cs page will get the text selected and will load a ...
10
votes
4answers
2k views

Disabled radio button losing value after postback

I have two radio buttons that are disabled with javascript when the page loads. RadioButton1 is checked by default. When I click the button to do a postback, the RadioButton1 is no longer checked. ...

1 2 3 4 5 150