Tagged Questions
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?
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))
...
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 ...
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 ...
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 = ...
12
votes
6answers
576 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 ...
11
votes
9answers
348 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
4answers
1k 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
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 ...
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
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
4k views
Error converting JSON to .Net object in asp.net
I am unable to convert JSON string to .net object in asp.net. I am sending JSON string from client to server using hidden field (by keeping the JSON object.Tostring() in hidden field and reading the ...
9
votes
4answers
1k views
Streaming with Node.js, or any other Comet solution
I'm trying to build a streaming solution for an internal app, but am drawing blanks for a solution to get past a roadblock. Currently, in my working example, I'm using APE, but due to restrictions I ...
9
votes
3answers
1k views
Get timezone difference between client and server
If my user is in California and they have their computer set to PST, it's 1:00 pm there. If my server is set to EST, the current server time is 4:00 pm.
I need a way to get the timezone difference ...
8
votes
3answers
92 views
How can i make a disabled control back to enable using Javascript
I have done a code to disable a control when user clicks on a control. On my form i am having a TextBox and a DropDown. When user clicks on a TextBox i will disable the DropDown like that when click ...
8
votes
1answer
170 views
CSS + jQuery - Unable to perform .toggle() and repeated jQueryTemplate Item [I must warn you this is a bit overwhelming]
Okay here we go:
Stream.html (Template file)
<div class="streamItem clearfix">
<input type="button" />
<div class="clientStrip">
<img src="" alt="${Sender}" ...
8
votes
2answers
211 views
How do you duplicate “freeze pane” functionality on an HTML table?
I have a widget in an ASP.NET project that I'm developing for my job. It has to be 300 pixels wide and cannot be any wider. Unfortunately what they want has proven to be fairly complicated for such a ...
8
votes
4answers
859 views
How can I detect when a file download has completed in ASP.NET?
I have a popup window that displays "Please wait while your file is being downloaded". This popup also executes the code below to start the file download. How can I close the popup window once the ...
8
votes
2answers
596 views
License for application
Using mysql, c#.net, Java Script
I have the web application, i want to create a user limit for my application which means i have to use some license for the users....
For Example
customer need the ...
8
votes
4answers
253 views
Why use window.location in a hyperlink?
I was going through a website I've taken over and came across this section in one of the pages:
<a href="javascript:window.location='<%=GetSignOutUrl()%>';">
// img
</a>
...
8
votes
6answers
596 views
Javascript event on page postback
Is there any javascript event which is triggered on postback?
If not, how can I run client side code immediately after or before a page postback?
Many thanks in adavance,
Bruno
7
votes
1answer
172 views
How can I stop a postback from refreshing the page at the client
When I start a postback using __doPostBack, a file is created and going back to the user to download in the HttpContext.Current.Response.
Because I change the Response, the page including its ...
7
votes
5answers
385 views
how to call an ASP.NET c# method using javascript
Does anyone know how to call a server-side c# method using javascript? What i need to do is to stop imports if Cancel is chosen or to continue importing if ok is chosen. I am using visual studio 2010 ...
7
votes
2answers
400 views
How to write Javascript in the code behind file?
Below is the snapshot of my code that includes javascript taken from gridview's item template. It also has an image control placed.
<ItemTemplate>
<a ...
7
votes
3answers
444 views
How to alter browser's back button functionality similar to eCommerce sites in asp.net
I have a web application, in which browser's back button functionality should be customized. It's like, whenever we click on browser's back button, it should take us to landing page(Login page), It ...
7
votes
3answers
90 views
How to ensure offsite javascript doesn't impede site performance?
I need to include an offsite javascript file on my page, however I don't want it to be able to affect the performance of my site, in case the server where the javascript is on is down or not ...
7
votes
2answers
892 views
How to Validate mac address & ipaddress in client side(using javascript) & server side(using c#)
My team doing a project related to network using Asp.net MVC(c#).
I need to validate mac address & ipaddress in client side(using javascript) & server side(using c#) for a simple form entry. ...
7
votes
2answers
588 views
How to Implement Moving content/text in website. in asp.net
How to Implement Moving content/text in website like a marquee. In asp.net.
I have values in my data set.the data set value must be displayed in div like a rotating flash news...
7
votes
5answers
678 views
force browsers to get latest js and css files in asp.net application
Some browsers cache js and css files, failing to refresh them unless you force them to. What's the easiest way.
I just implemented this solution that seems to work.
Declare a version variable on ...
7
votes
1answer
13k views
How to fire TextBox.TextChanged event on jquery onkeyup?
I have asp.net TextBox with ontextchanged event this is search text box in my application.
I have search code in this event. how can I fire this event with the help of j query onkeyup.
If i enter ...
7
votes
7answers
2k views
Restrict Textarea for not accepting 250 character
I have a textarea in C#, please see below code:
<asp:Label ID="lblQuestions" runat="server" CssClass="addinfo">
Question & Comments</asp:Label>
<asp:TextBox ...
7
votes
2answers
1k views
What is the JavaScript equivalent of C# Server.URLEncode?
What is the JavaScript equivalent of C# Server.URLEncode?
7
votes
8answers
46k views
Passing arguments to JavaScript function from code-behind
I would like to call a javascript function from an aspx control. For instance, suppose I had:
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Untitled ...
7
votes
7answers
946 views
Only supporting users who have Javascript enabled
I am considering creating a website that only supports users with JavaScript enabled.
My justification for this is that I want to offer a rich user experience, in a fairly limited time budget, so if ...
7
votes
2answers
989 views
Is there any better web browser control in C# (.NET)?
I need JavaScript working almost perfectly in my application that should be able to access web content and let user take a control of it. However, webbrowser component pops new windows in separate ...
6
votes
3answers
232 views
Best way to hide easter egg code? [closed]
Note: It has come to my attention that there is a rather large moral concern with easter eggs in general and I was completely unaware of it. While attempting to answer the question I would ask that ...
6
votes
6answers
114 views
How does PHP compare with the .NET languages? [closed]
This is just an interest question really - I am a student on a summer placement and have been doing a project over the last few weeks.
I was tasked with designing a web-based interface for an SQL ...
6
votes
1answer
267 views
Custom Text Box control
I have a specific need to control how some text is entered in a multiline textbox (ASP:TextBox)
At first I though I could control it with just JavaScript but it appears I can get close but not 100% ...
6
votes
2answers
2k views
colorbox + asp.net button wont postback
I'm using the colorbox modal plugin (http://colorpowered.com/colorbox/)
I've got a simple form sitting in a master page, for some reason I cannot get the submit button to post back, it doesn't do ...
6
votes
2answers
2k views
Unescape JavaScript's escape() using C#
Are the any functions in C# that handle escape/unescape like JavaScript?
I have a JSON string like this:
...
6
votes
4answers
5k views
Pass C# ASP.NET array to Javascript array
Does anyone know how to pass a C# ASP.NET array to a Javascript array? Sample code will also be nice.
Sorry if I was vague earlier guys. The question is actually quite simple. Let's say for ...
6
votes
7answers
425 views
check version of browser
How can i find what version of browser a user is using and ask him to upgrade it
6
votes
3answers
4k views
how to set javascript breakpoints in vs2008 or vs2010
hi im itrying to debug javascript using vs2010
but i can't set breakpoints?
how can i do this? thanks
edit:
ive used your tips, debugger etc... thanks guys.
wow! i just noticed something, every ...
6
votes
3answers
2k views
Detect Browser Close on Asp.net
I want to do some functionality on log-out, if the user directly closed his browser then same functionality want to do, we can not do on page unload because there are more than 100 pages in my ...
5
votes
3answers
261 views
When jGrowl is called, the thickbox stops working properly (using UpdatePanel)
I am calling a thickbox when a link is clicked:
<a href="createContact.aspx?placeValuesBeforeTB_=savedValues&TB_iframe=true&height=400&width=550&modal=true"
...
5
votes
3answers
90 views
Move button into Div
I need to move this new button into this DIV that already exists. This seems to me like it should work but doesn't. What am I doing wrong?
Button button5 = new Button();
button5.Text = "Five";
...
5
votes
4answers
514 views
How to update controls[DataGrid,TextBoxes and Label] based on a row selection made in DataGrid that resideds in a updatePanel?
I have got a grid[Grid1] that build its dataRows when a button[search] is clicked, I managed to Ajaxify it by placing it in an UpdatePanel and it worked fine. Before Ajaxifying Grid 1, another ...
5
votes
3answers
2k views
grid view printing with table in asp.net
i am using visual studio 2008 and sql server 2008
i want to print my "gridview with table" using a button
in asp.net 3.5
code has three part first this is from my default page
protected void ...
5
votes
1answer
374 views
How can I pass Collection to modal dialog window?
I want to know, if its possible to pass collection between pages. I mean to say i have a client-side JavaScript modal dialog on which I want to use my collection. Earlier I was using Session[] to ...
5
votes
4answers
1k views
How to make a countdown timer in asp.net web application(C#)?
I am Creating Timed online test in C# asp.net.I have created it using the local machine time. But in the case of Database disconnection or system hang, The countdown timer must start from the time at ...