Tagged Questions

4
votes
1answer
283 views

How can we make the DataView Control respond to javascript events?

If I had an ASP.NET 4.0 DataView control that looked like below, how can I control javaScript events on the client side? Body tag: <body xmlns:sys="javascript:Sys" ...
3
votes
2answers
166 views

Will MVC3 unobtrusive validators come to Webforms

MVC3 has new validators for required form fields which are much cleaner than the ASP.NET 4 WebForm validators. (Minimal inline Javascript) Will this clean javascript validator implementation also ...
3
votes
2answers
323 views

chars like: ' or " in header script code become: &#39; or &quot;

I recently installed Visual-Web-Developer 10 and open my old asp.net 3.5 solution in it and converted it to asp.net 4 solution. every thing is working fine exept one strange problem: suddenly all ...
1
vote
1answer
510 views

Upgrading from asp.net 3.5 to asp.net 4.0 causes javascript-error on some postbacks

I have recently begun upgrading an existing and work .net website from asp.net v3.5 to v4.0 and the strangest thing occur. When submitting some forms I get a javascript error like: Message: ...
0
votes
0answers
52 views

WCF calling multiple times from JavaScript

While I change or modify anything in data access layer, I am getting this error: Unable to copy file "C:\bin\Debug\ajaxservice.Data.dll" to "bin\Debug\ajaxservice.Data.dll". The process cannot ...
0
votes
1answer
50 views

Dynamic response with tracking pixels?

I am testing out some tracking pixel functionality in an ASP.Net 4 MVC architecture. This article gives a nice way of setting a tracking pixel (image) that you can use to read a visitor's environment ...
0
votes
1answer
76 views

url decoding in asp.net

I have a form in asp.net with a few textboxes. I'm trying to post the values in them to the server using jquery ajax, but having problems. I'm using javascript encodeURIComponent for the values of the ...
0
votes
0answers
31 views

Handle Server Side Function & Sessions on Change of HtmlSelect

Hi everyone; I’m trying to work on HtmlSelect which handles the website language and culture session, the idea worked when I used my HtmlSelect as a part from a runat server form but what I need is ...
0
votes
0answers
43 views

Public varibale in aspx.vb Class no accessible in aspx

I have a variable contained in a quesrystring that I'm successfully retrieving into my aspx.vb code. I want to be able to pick that variable up in the main aspx page for use in javascript. However the ...
0
votes
0answers
93 views

How can I display an Excel HTML frame content document as a standalone HTML document?

When I publish an Excel 2010 workbook to HTML, I get the arrangement below: A 'container' document called Workbook.htm, which only has some script and a frameset. A folder called Workbook_files, ...
0
votes
2answers
1k views

How to clear textbox in javascript that contains value of gridview row editing

I have following ASP controls: a textbox , a gridview, an update button, and a reset button. When I click on the row editing button of a gridview row, then it fills the corresponding value in the ...
0
votes
1answer
353 views

Does javascript ValidatorEnable still supports in ASP.Net 4.0?

I would like to disable a RequireFieldValidator control by a certain condition. I have tried this code function doSomething() { var myVal = document.getElementById('RequiredFieldValidator1'); ...
0
votes
1answer
64 views

Including client-side scripts in head in ASP.NET

Hey guys. I don't do HTML or Javascript, I prefer to work in C#, but one of the JS guys tells me that he needs a script included within the head tag. The page in question is a content page of a master ...
0
votes
1answer
85 views

How to call server methods from JS in .NET 4.0

I am going to implement some WCF service and call it from JavaScript. Here is explanation, how I am going to do that: http://msdn.microsoft.com/en-us/magazine/cc163499.aspx Is there anything better ...
0
votes
1answer
331 views

Adding a clientside onload function to an ASP.NET control in 4.0 encodes my quotes

I'm trying to add a Javascript function to the onLoad event of a asp:Panel. It goes something like this: string clickFunction = "$('[id*=lblHiddenPageArray]').text('');" ...
0
votes
1answer
213 views

asp.net 4.0 webforms - how to keep ContentPlaceHolder1_ out of client id's in a simple way?

I'm attempting to introduce master pages to an existing webforms site that's avoided using them because of client id mangling in the past (and me not wanting to deal with the mangling and doing <% ...
-4
votes
0answers
25 views

Wcf methods calling twice in IIS 7.0

The wcf method calling twice while running from windows server 2008 + IIS 7 but if I run from local are all working fine.