3
votes
4answers
27 views
ASP.Net - Javascript inside AJAX UpdatePanel
I am running into an issue with running javascript from an external javascript file inside of an UpdatePanel. I am trying to get a color picker working inside of a ListView. The ListView is inside …
0
votes
4answers
80 views
$(’#<%= txtFirstName.ClientID%>’). What do $ and # do in this code?
$('#<%= txtFirstName.ClientID%>').show();
Trying to send ClientId to external Javascript file using server tags
as a parameter
<input type="text" ID="txtFirstName" runat="server" …
0
votes
2answers
26 views
Will this code work? Javascrpt/asp.net (Code not working)
<td class="style4">
<input type="text" ID="txtFirstName" runat="server" maxlength="50"
class="DefaultTextbox" style="width:180px;" value="First Name"
…
0
votes
0answers
11 views
Horizontal Reorderlist in Asp.Net/Javascript
Hello,
I want a horizontal reorderlist similar to ajaxcontrol toolkit reorderlist, issue with this list is that it shows only vertical data but i need horizontal data like in datalist repeated …
1
vote
2answers
29 views
how to rotate images in banner using Javascript?
hi,
how could i change images using JavaScript in asp.net? I want these to be changed after some time intervals (say 15 seconds) automatically (without hitting the refresh/F5 button) using java script …
3
votes
3answers
58 views
How can I call web service methods from javascript?
Is there any way to call web services from javascript? I know you can add in a script manager to pull in the web services but I can't figure out how to access the functions from javascript once I've …
0
votes
3answers
52 views
Javascript onKeyPress event not working ?
Why does this statement work with OnKeyPress event of Javascript in C#.
txtPassword.Attributes.Add("OnKeyUp", "CheckPasswordStrength(\""
+ txtPassword.ClientID.ToString() + …
0
votes
5answers
141 views
How to play a audio sound in a web page as a background music
I want to play an audio file whenever my page gets loaded onto the client browser. And if a user presses a pause button on the web page then the sound gets paused until he leaves the sound and can …
2
votes
8answers
167 views
Javascript validation is bad?
Hi,
It has been long time since we have been validating our forms using javascript. I am sure this must be the case with most other developers.
Question:
What if the user (or probably a bad guy) …
2
votes
9answers
113 views
Chart controls for ASP.NET
I am looking people's opinion and experience on using chart controls within an ASP.NET application (web forms or MVC) primarily but also in any kind of project.
I am currently doing my research and I …
0
votes
2answers
37 views
Event not firing on dropdown list when disabled
This client side script is being added to buttons in our existing codebase. It basically shows a pop-up that the system is busy whenever a long running process is occuring. this works fine for …
0
votes
2answers
43 views
how to assign an value from javascript variable to hidden field
hi,
<script type="text/javascript" language="javascript">
function(sender, e)
{ var **Sessioninfo**= $get('<%= …
0
votes
2answers
46 views
Minify inline javascript during build for ASP.net?
We have a handful of ASP.net pages that include more than 50+ lines of javascript specific to that page. We'd like to minify that javascript during our CruiseControl build process.
We already use …
0
votes
1answer
23 views
Need idea for implementing Yahoo Signup form’s Name field in asp.net
I want to do the same functionality for first name Field and Surname field in the registration page of yahoo. When i clicks on textbox. Default text dissapears. And when i loses the focus from same …
0
votes
3answers
27 views
asp cookie vs javascript cookie
what is the difference between asp cookie and javascript cookie.
by asp cookie i mean cookie created using response.cookie
& which one is better ?
