0
votes
0answers
8 views
Adding ShareThis widget to an asp.net page
Hello guys! I am integrating a ShareThis widget in my ASP.NET web page. My problem is that I need to know via JavaScript when an item (let's say Facebook) has been selected. Here is the piece of code …
0
votes
1answer
22 views
Making sure certain events are handled when closing browser window
We have a website that needs to perform certain actions when a pop-up is being closed.
Note: Not a session end but just a popup being closed.
The solution we found so far, is catching the onunload …
0
votes
1answer
13 views
Sending a Dictonary Key to JS function
I am trying to send a Dictonary key (which is a string) to a Javascript function.
<%
foreach (var field in Model.Fields)
{ %>
<tr><td>
<a href="#" …
0
votes
2answers
62 views
Rich client choice for an intranet web application with 5000+ users
For an intranet web application with 5000+ users we need to develop highly interactive (as few postbacks as possible) client. So performance issue might arise. What would be your choice and why?
…
0
votes
5answers
43 views
using jQuery AJAX with asp.net webservices always goes to error: instead of success:
Issue
I have an aspx page with jQuery code to send an ajax request over to an asmx web service file (on the same website). The response that comes back is not consistent, however, it consistently …
0
votes
1answer
21 views
Datareader’s value in javascript array
i want to fetch Image name, and 3 more field's value from database and pass it to the javascript's array....which would b generate from database(Image name and 3 field)
…
0
votes
2answers
61 views
How to get a server-side variable into JavaScript
I want to pass a value to this JavaScript from the database (using datareader in asp.net(C#)).
The script is from http://www.dynamicdrive.com/dynamicindex14/leftrightslide.htm
I need to set a pass …
1
vote
2answers
18 views
How to call a webmethod asynchronously and partially render a control ?
Hi all,
I need to call a webmethod of a webservice asynchronously from code behind of a web page.
In the callback function I need to bind a gridview and render it. I want to partially render that …
0
votes
2answers
29 views
How to change text property of asp.net textbox with javascript
I have a textbox that I want to change text property of it with javascript, but I can't do.
My sample code below, Can anyone say what is wrong? Thanks...
function openAdresYeni(p) {
…
0
votes
2answers
28 views
JavaScript not Running on VS2008 Development Server a.k.a (cassini)
I am trying to run a simple ASP.Net Web Application/Site on Vista Box. Unable to run any JavaScript when I hit F5. However when I deploy the same to local IIS and call the application using IE8 this …
0
votes
2answers
35 views
IIS6 javascript routing issues
Hi all,
I currently have the following within my view
function loadData() {
var url = "/Testx.mvc/GetData";
var id = "111111";
var format = "html";
$.ajax({
url: url,
…
0
votes
2answers
26 views
ASP.NET user control and accessing a property from Javascript ?
Hi
This I can't work out
I have ASP.Net user control,which is basically two drop downs, that has a public property Index which is calculated from the drop downs, and works fine
I need to access the …
0
votes
2answers
40 views
ASP.NET AJAX: Creating a postback
I would like to cause a post back that occurs only once by inserting some AJAX into the page after a specific event occurs.
Currently I have:
string script = "<script language='Javascript'>" +
…
0
votes
0answers
53 views
ASP.NET DropDown SelectedIndexChanged not firing in Firefox with UpdatePanel
I have an asp:Updatepanel that contains a dropdown and I run some Javascript on the onchange event of the dropdown. I also fire some server side code on the selectedindexchanged of the dropdown.
…
1
vote
2answers
33 views
What are scriptmanager benefits over direct jquery ajax calls?
I am a little confused about the benefits or conc using scriptmanager with ajax calls or use JQuery to direct call webmethods.
Can some one give me some hints about this issue? when to use which? …
