active questions tagged javascript+asp.net - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T08:25:15Zhttp://stackoverflow.com/feeds/tag/javascript+asp.nethttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1912667/how-can-i-close-all-the-ie-browser-windows-that-i-opened-in-javascript2How can i close all the IE browser windows that I opened in JavaScriptsubramani2009-12-16T06:15:33Z2009-12-16T07:22:30Z
<p>How can i close all the IE browser window in asp.net,</p>
<p>I am opening many windows..from javascript by window.open()...
I need to close all the windows by clicking the button in main page(parent window).</p>
<p>How can i do it?</p>
http://stackoverflow.com/questions/1904190/dynamically-size-silverlight-control-on-webpage0Dynamically Size Silverlight Control on WebpageGus2009-12-14T23:13:18Z2009-12-16T04:09:28Z
<p>Here is the issue...</p>
<p>I am adding some silverlight 3 controls to an ASP.Net Web Forms application. The silverlight application's height can change based on the amount of data in it. The application is part of a web page and not the whole page. My users would like to have only 1 set of scroll bars. Is there a way to dynamically size the div or object based on the suze of the silverlight application?</p>
<p>For example can I hook into the silverlight javascript to do this somehow? </p>
http://stackoverflow.com/questions/1911820/how-to-scroll-to-bottom-of-page-when-postback-finish-in-asp-net0How to scroll to bottom of page when postback finish in asp.net?monkey_boys2009-12-16T02:03:46Z2009-12-16T03:09:54Z
<blockquote>
<p>How to scroll to bottom of page when
postback finish in asp.net?</p>
</blockquote>
<p>I have many detail in page whan i clicking show detail in master detail this page show many data in my page so how to to scroll to bottom of page auto ?</p>
http://stackoverflow.com/questions/1909371/gridview-manipulation-using-jquery-and-javascript0Gridview manipulation using JQuery and JavaScriptAchilles2009-12-15T18:19:59Z2009-12-15T22:23:24Z
<p>I have an ASP.NET gridview I want to manipulate using JavaScript/JQuery. The problem I THINK I'm going to have with my approach is that the server won't have any knowledge of the rows that I am appending via gridview since the html representation of the gridview control is coupled with the object model that lives on the server. So here is what I need to do:</p>
<p>I need to append to the gridview when a user submits data, and submit each row in the batch of entered data to the server to be processed. Because I have other ASP.NET controls that will contain data that I want to submit, I'd like to submit all that data via a traditional postback to the server.</p>
<ol>
<li>How do I implement this approach if possible?</li>
<li>If not possible, could you please explain?</li>
</ol>
<p>Thank you very much for your help.</p>
http://stackoverflow.com/questions/1910743/need-temporary-client-side-solution-for-handling-browser-back-button0Need temporary Client-side solution for handling browser "Back" buttonJim2009-12-15T22:06:53Z2009-12-15T22:10:19Z
<p>At this moment I cannot make changes to the code behind for a few weeks, but can change the .aspx file.</p>
<p>We have some <strong>internal</strong> users that will click the IE7 "back" button to navigate back 5 or 6 pages (which is specifically against stated rules and training). There are a very few pages where this is causing us major problems with duplicating transactions because the buttons that should be disabled, were enabled in past pages. I am trying the OutputCache directive which causes the user to see that the "page has expired", but I anticipate that they will then click the "refresh" button, and then presents the same problem. </p>
<p>As I said this is a temporary fix until I can modify the code-behind in a few weeks. </p>
<p>Instead of getting the "page has expired", can I have it go to a different .aspx using javascript? Basically, I'll be sending them to the page at the level above, where they can then pick this page and enter it correctly.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1910095/reading-web-config-from-js1reading web.config from JS Ram2009-12-15T20:16:55Z2009-12-15T21:49:30Z
<p>IS there any way that I can read config values in web.config with javascript ?
Why would I want to do that ?</p>
<p>I have a timer in my website which would pop up a modal dialog with a count down timer (count down for 2 minutes) if the user is inactive for 20 minutes. If the user does not respond, it logs him out. If he does, it pings to the server (to maintain the session) and keeps the session alive</p>
<p>This 15 minutes is hardcoded in the js file. I would rather want to pick it up from a config file/some other file than having it hard coded into the JS</p>
<p>here is the code snippet</p>
<pre><code>$.fn.idleTimeout = function(options) {
var defaults = {
//I would like to pick these values from some config file
inactivity: 900000, //15 minutes
noconfirm: 120000, //2 minutes
sessionAlive: 900000, //15 minutes
click_reset: true,
logout_url: '/Views/Pages/Timeout.aspx'
}
</code></pre>
<p>Any suggestions?</p>
<p>Edit: This is in a separate js file. Doing <%=%> would give error "illegal XML character
[Break on this error] inactivity: <%=ConfigurationManager.AppSettings["Inactivity"] %>;"</p>
http://stackoverflow.com/questions/1907984/issue-in-embed-control-with-firefox0Issue in Embed Control with Firefoxsusanthosh2009-12-15T14:54:33Z2009-12-15T14:54:33Z
<p>Hi I am using a embed control in my page. When I am trying to click the play button it is working fine with IE but not with Firefox. how can I overcome this?</p>
http://stackoverflow.com/questions/1904531/best-way-to-architect-javascript-ui-code-with-asp-net-in-terms-of-reuse-and-logic4Best way to architect JavaScript UI code with ASP.NET in terms of reuse and logic encapulation?Jeffrey2009-12-15T00:36:15Z2009-12-15T14:28:05Z
<p>I am having trouble settling down to a proper practice for UI JavaScript coding. So I am looking for a smarter way to do things. I’ve been using jQuery with ASP.NET and I have been doing things like below which seems unprofessional and dumb. JavaScript UI programming has always been a mysterious to me. I know how to do it but I never knew how to do it properly.</p>
<pre><code>$(function(){
$('submit').click(function() {
//behaviors, setup styles, validations, blah...
});
});
</code></pre>
<p><strong>Problems:</strong></p>
<ul>
<li>Code duplications are often therefore harder to maintain and reuse</li>
<li>With ClientIds are generated by ASP.NET, it’s hard to pull code chunks into separate js files</li>
<li>Common declarations are placed on master pages, however jQuery document ready function appears almost on every other pages as well</li>
</ul>
<p><strong>Goals:</strong></p>
<ul>
<li>JavaScript library/framework independent, so that it will be easier to switch frameworks down the road</li>
<li>Encapsulate/modulate logic for easy reuse, so that on each page, it will only be a few simple lines of initialization code</li>
<li>Separation of concerns for easy maintenance and readability</li>
</ul>
<p><strong>Questions:</strong></p>
<p>Being a C# developer mainly my thinking is very OO and jQuery is very procedural. I understand the concepts of Anonymous Function however in general my mind is still trying to make a domain model which abstracts the UI then declares properties or methods. But I am really not sure if this is the way in JavaScript. Or am I being too ideal or am I trying too hard to make something that's not supposed to be OO OO like? So the questions are:</p>
<ul>
<li>Should I start to encapsulate/modulate functions using JavaScript prototype and make it a bit more OO like? So that HTML controls or behaviours can be encapsulated for reuse?</li>
<li>Or should I start encapsulate logics into jQuery plug-in? But this way the code will be 100% dependent on jQuery.</li>
<li>Or any other approaches?</li>
</ul>
<p>Thank you.</p>
<p>Updated:
I just found this <a href="http://www.slideshare.net/s.barysiuk/javascript-and-ui-architecture-best-practices-presentation" rel="nofollow">slide</a> and it seems to be a good starting point.
This is also a <a href="http://snook.ca/js/snook-v10.js" rel="nofollow">good example</a> that I just found. And a <a href="http://ejohn.org/apps/learn/" rel="nofollow">good tutorial</a> by the creator of jQuery.</p>
http://stackoverflow.com/questions/1907490/asp-net-3-5-javascript-and-skype4com-problem0ASP.NET 3.5 , JavaScript and Skype4COM Problemniv2009-12-15T13:32:03Z2009-12-15T13:32:03Z
<p>hey all,</p>
<p>i'm trying to access Skype.ActiveCalls Collection from JavaScript,</p>
<p>i can access some of the properties like (count) on runtime.</p>
<p>while i've trying to debug the code i've noticed a strange problem,
i can see all properties and methods of element without any direct access (Skype.ActiveCalls[0]), but when i trying to do so (on debug) i get an "undefined" error.</p>
<p>on runtime i get the same error so i cen't access these elements.</p>
<p>what can cause such thing? how can i overcome the problem ?</p>
<p>thanks in advance.</p>
http://stackoverflow.com/questions/1904571/online-control-property-editor-like-control-property-editor-in-visual-studio1online Control Property editor like control property editor in Visual Studio sam2009-12-15T00:47:31Z2009-12-15T12:37:30Z
<p>I can imagine it will require heavy javascript and ajax to build such editor but couldn't find any sample on internet.</p>
<p>Can someone please provide some sample, reference or anything could help?</p>
<p>thanks very much. </p>
http://stackoverflow.com/questions/751807/dopostback-calling-code-behind-events-from-javascript0__doPostback - calling code behind events from JavaScript?mark smith2009-04-15T13:54:06Z2009-12-15T12:31:10Z
<p>I wish to call a method in my code behind from JavaScript, I sort of know how to do it.. I must call <code>__DoPostBack</code> passing name of control and parameters..</p>
<p>But what if an event doesn't exist i.e. NO CONTROL. Really what i am trying to do is call an event.. but the event doesn't exist as there is no control associated with it..</p>
<p>I sort of could do this:</p>
<pre><code>If IsPostBack Then
If Request(”__EVENTTARGET”).Trim() = “CleanMe” Then
CleanMe()
End If
.....
</code></pre>
<p>But this means I must do it manually. Can I not wire up an event.... otherwise I will have loads of different IFs (i.e. If this passed then call this .. etc..).</p>
<p>Any ideas?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1905746/convert-normal-window-to-modal-window0convert normal window to modal window ?AmiT2009-12-15T07:28:17Z2009-12-15T08:28:18Z
<p>Is there any way to convert normal window to modal window?</p>
<p>I have a grid with a image column.
As I click the image a window is appearing with the image.(using javascript window.open(...) )</p>
<p>But, as I click a different image in the grid a second window is appearing with respective image.
I dont want the user to be able to do anything else before closing the current window.</p>
http://stackoverflow.com/questions/1903261/calling-webservice-for-widgets-or-composite-controls0Calling WebService for widgets or composite controls unknown (google)2009-12-14T20:24:25Z2009-12-15T00:03:34Z
<p>I have a widget that contains about 40 controls in it. Essentially when a user makes a selection from a Dropdownlist on my main user control, what I want to do is call a webservice to get the new values for the controls in my widget. Is it efficient to have each control essentially call the webservice to get values that pertain to it’s new state Or is there a way to have the widget as a whole get the new values in a collection and then set each individual control within itself with the new values that apply, without really getting into a situation where you have too much going on and therefore loosing performance values</p>
http://stackoverflow.com/questions/1903434/dhtmlx-combo-inside-ajax-panel-in-asp-net0DHTMLX Combo inside Ajax Panel in ASP.NETjparaujo2009-12-14T20:56:46Z2009-12-14T21:02:16Z
<p>Hi, I'm trying the combination of <a href="http://www.dhtmlx.com/docs/products/dhtmlxCombo/index.shtml" rel="nofollow">DHTMLX Combo</a> and ASP.NET AJAX, but since it's simply a javascript and not .NET native it will post back ignoring the update panel. I need it working with AJAX, so what could I do?</p>
<p>If I could do that AJAX call manually it would help, but how?</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/285512/is-there-any-way-to-hide-a-javascript-file-from-intellisense-in-visual-studio-23Is there any way to 'hide' a JavaScript file from IntelliSense in Visual Studio 2008?flesh2008-11-12T21:50:52Z2009-12-14T20:30:24Z
<p>I have a third party JavaScript plug-in but including the file breaks IntelliSense for jQuery amongst other things. The only way I can get IntelliSense back working with jQuery is by commenting out the plug-in. Is there a way I can hide the plug-in file from the IntelliSense parser?</p>
http://stackoverflow.com/questions/1873562/disqus-problems-in-ie-conflicts-with-asp-net0Disqus problems in IE? Conflicts with ASP.NET?Niels Bosma2009-12-09T12:22:32Z2009-12-14T20:17:49Z
<p>Anyone having problems with discus in IE? Works fine in FF but reports problem with thread.js in IE. (runtime error)</p>
<p>Disqus works fine on other sites in IE, but non on mine. Maybe ASP.NET conflict.</p>
<p>I have jQuery and addthis on the page but if I comment these the problem remains.</p>
<p>See the problem live:</p>
<p><a href="http://offerta.se/artiklar/10-tips-till-den-nye-foretagaren.html" rel="nofollow">http://offerta.se/artiklar/10-tips-till-den-nye-foretagaren.html</a></p>
http://stackoverflow.com/questions/963518/how-can-i-retrieve-contacts-emails-from-things-like-msn-twitter-facebook-gmail1How can I retrieve contacts/emails from things like MSN, Twitter, Facebook, GMail , etc...?Matt2009-06-08T05:27:16Z2009-12-14T20:07:35Z
<p>Hi,</p>
<p>I'm building an application that gives users the option to send out an email notification to their friends.</p>
<p>The options I would like to give them for this are to:</p>
<ul>
<li>manually write down which emails they would like to send to</li>
<li>choose contacts from a list of ones already in the database for that user</li>
<li>choose all contacts from facebook, twitter, digg, gmail, or msn to send the email to</li>
</ul>
<p>Is there any way I can retrieve all of the email addresses for a certain contact from these different websites?</p>
<p>For example, if I chose the option to send out email notification and I wanted to send it to all of my friends on my facebook account, how could I do this? (Remembering that the user is interacting with a completely separate website and should not have to go onto facebook to send this emails)</p>
<p>Any ideas?</p>
<p>Thanks in advance for your help!</p>
<p>Matt</p>
http://stackoverflow.com/questions/1824421/detect-browser-close-on-asp-net3Detect Browser Close on Asp.net Shameem2009-12-01T06:49:45Z2009-12-14T17:00:35Z
<p>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 website because this will work on redirection from each page</p>
<p>Thank You</p>
http://stackoverflow.com/questions/1899797/connecting-database-in-javascript-2connecting database in javaScriptjjj2009-12-14T09:07:54Z2009-12-14T12:42:50Z
<p>i have this menu in javaScript:</p>
<pre><code>menu[1] = {
id: 'menu1', //use unique quoted id (quoted) REQUIRED!!
fontsize: '100%', // express as percentage with the % sign
linkheight: 22, // linked horizontal cells height
hdingwidth: 210, // heading - non linked horizontal cells width
// Finished configuration. Use default values for all other settings for this particular menu (menu[1]) ///
kviewtype: 'fixed',
menuItems: [ // REQUIRED!!
//[name, link, target, colspan, endrow?] - leave 'link' and 'target' blank to make a header
[prompt("add a note:", ""), "", ""]
]
};
</code></pre>
<p>i want to replace the prompt with data from a database...</p>
http://stackoverflow.com/questions/1899860/net-syntax-of-responsestring-to-match-js-callback-function-with-multiple-paramet0.NET syntax of responsestring to match JS-callback function with multiple parameterDavid2009-12-14T09:21:44Z2009-12-14T09:48:45Z
<p>Hi,</p>
<p>i would like to pass multiple parameters in my callback function and don't know who to do this...</p>
<p>This would be the C# code:</p>
<pre><code> Response.Clear();
Response.ContentType = "text/plain";
Response.Write("content of param1");
Response.Write("content of param2");
Response.End();
</code></pre>
<p>and the JS code:</p>
<pre><code> $.getJSON("localhost/myFunction", dataString,
function(param1, param2) {
alert(param1);
alert(param2);
});
</code></pre>
<p>How would i perform the actual mapping of parameter in the C# code, so JavaScript recognizes them as the 2 parameters of the callback function? ( In detail i want to pass a JSON-object and a "status" parameter here... )</p>
http://stackoverflow.com/questions/1890321/can-i-get-the-asp-net-rangevalidator-an-onblur-onfocus-events-to-play-nice-with-e0Can I get the ASP.NET RangeValidator an onblur/onfocus events to play nice with each other?eponymous232009-12-11T19:25:35Z2009-12-14T02:00:08Z
<p>I have a textbox for entering a currency amount, with a RangeValidator control making sure the value entered is between 1 and 99999999.99.</p>
<p>The field also has an “onblur” event that fires off some JavaScript to format the input with commas and a decimal point (e.g. 12455 -> 12,455.00). There's also a "onfocus" event that reverses the "onblur" effect, putting the value back into an editable format (e.g. 12,455.00 -> 12455.00.</p>
<p>My problem is the RangeValidator doesn't like the formatted value with the commas and subsequently fails on the validation.</p>
<p>Is there a way to get around that? I want to be able to range check the value, yet still present it formatted when the textbox doesn't have focus. I realize that a CustomValidator could probably work, but I was hoping to get this to work with the RangeValidator.</p>
http://stackoverflow.com/questions/972167/how-can-i-call-a-javascript-function-defined-in-a-partialview-after-an-ajax-reque1How can I call a JavaScript function defined in a PartialView after an AJAX request completes?jeff_z_sun2009-06-09T19:53:59Z2009-12-13T15:00:04Z
<p>Here is my partial view:</p>
<pre><code><%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl" %>
<script type="text/javascript">
function myFunction() { .... }
</script>
....other html content ...
</code></pre>
<p>On my page, I have a link that calls a controller action to render the partial view:</p>
<pre><code><%= Ajax.ActionLink(..., new AjaxOptions { ..., OnSuccess = "myFunction" }) %>
</code></pre>
<p>This is my controller action:
...
return PartialView("TestControl");
...</p>
<p>I thought that this is pretty straight forward. Unfortunately, I get the JavaScript error:</p>
<blockquote>
<p>Microsoft JScript runtime error: 'myFunction' is undefined. </p>
</blockquote>
<p>When I check the generated page source after the AJAX call, I can see <code>myFunction</code> in the source. However, within AJAX's <code>OnSuccess</code>, somehow it does not know about this function. Is there anything I have missed? Is there any way that I can call the script that are part of the partial view that is loaded via AJAX? (I have tried to use <code>eval()</code>, somehow I could not resolve the function either.)</p>
<p>Thanks in advanced.</p>
http://stackoverflow.com/questions/1881717/hidden-field-value-in-update-panel-not-updated-when-accessed-from-javascript0Hidden field value in update panel not updated when accessed from JavaScriptiulianchira2009-12-10T15:24:12Z2009-12-13T11:43:39Z
<p>I have a hidden field inside an update panel (.Net 3.5). On an asynchronous postback I update the hidden field value from code-behind, but when I inspect the value from JavaScript the hidden field has the old value. On a new postback, the hidden field value in code-behind is correct, updated from the previous postback. How can I get the correct value in JavaScript? </p>
http://stackoverflow.com/questions/1810837/validation-before-submit-is-hit0Validation before submit is hitEric2009-11-27T22:28:09Z2009-12-13T05:25:06Z
<p>i have two radio buttons. One a 'yes' one a 'no'. When yes is hit i show a whole different row of textboxes and other input controls. Also, when yes it checked i enable the validators. When no is check i disable the validators. The validators are set to disabled on creation. My issue is that when i select yes the validation works fine, but it validates before the user can enter in any data. It's kinda like getting fussed before you even do the crime. Is there a way to prevent this?</p>
<pre><code> function companiontoggle(choice) {
var trcompanion = $get('trcompanion');
var RFVCompfname = $get('<%=Somecontrol.ClientID %>');
var RFVCompLname = $Somecontrol.ClientID %>');
if (choice == 'Y') {
trcompanion.style.display = '';
ValidatorEnable(RFVCompfname, true);
ValidatorEnable(RFVCompLname, true);
}
if (choice == 'N') {
trcompanion.style.display = 'none';
ValidatorEnable(RFVCompfname, false);
ValidatorEnable(RFVCompLname, false);
}
}
</code></pre>
<p><strong>Everything works fine but how can i stop it from validating on the selection of the yes button. I even set causesvalidation = "false"</strong></p>
http://stackoverflow.com/questions/943761/asp-net-and-ajax0asp.net and AjaxJavier2009-06-03T09:03:38Z2009-12-12T17:00:03Z
<p>Hi all
I am using the following javascript code to refresh another page</p>
<p>window.opener.location.replace(url)</p>
<p>The problem is when entering the url, do not find the page as the page is located in the root and this calling code is placed in a page inside another folder. How do I specify the path to point to the root, which is where the page is located? I have try many things, but it does not work; //page.aspx, ../page.aspx, ~/page.aspx, page.aspx, /page.aspx....</p>
<p>Many thanks in advanced</p>
http://stackoverflow.com/questions/1668783/setting-display-in-net-code0Setting display in .NET codeEric2009-11-03T17:10:10Z2009-12-12T12:44:22Z
<p>I have a modal popup with a formview with a default mode of Edit. The controls inside the form are bound to data. I have <a href="http://en.wikipedia.org/wiki/JavaScript" rel="nofollow">JavaScript</a> that shows a textbox and a label only if a certain value is selected from a dropdownlist. I want to do this on load also.</p>
<pre><code> <tr>
<td align="left">
<asp:DropDownList
ID="ddl5"
AutoPostBack ="false"
onchange = showifother('12',this.value);"
SelectedValue='<%# Eval("event_type") %>'
runat="server"
DataSourceID="SqlDataSource5"
AppendDataBoundItems ="true"
DataTextField="Description"
DataValueField="ID">
<asp:ListItem
Selected="True"
style="color:gray"
Value="" >Causes of Damage</asp:ListItem>
</asp:DropDownList>
<tr id="treditpropdamage" style="display:none">
<td align="left">
<asp:TextBox
ID="txt2"
runat="server"
TextMode ="MultiLine"
ondatabinding="TextBox2_DataBinding"
ValidationGroup ="Editprop"
Text = '<%# Bind("bounddata") %>'></asp:TextBox>
</td>
</tr>
function showifother(num, value)
{
var treditpropdamage = document.getElementById('treditpropdamage');
if (num == '12')
{
if (value == '4')
{
treditpropdamage.style.display = '';
}
else
{
treditpropdamage.style.display = 'none';
}
}
}
</code></pre>
<p><strong>How can I set the tr tag to visible if 4 is the value of the bound value for the Dropdownlist in C#? Adding Runat="server" is not an option because I want to access the controls in JavaScript via document.getelementbyid</strong></p>
http://stackoverflow.com/questions/1892535/why-cant-i-call-a-form-content0Why can't I call a form content?jjj2009-12-12T06:13:51Z2009-12-12T06:41:11Z
<p>Hi,</p>
<p>I have this simple code:</p>
<pre><code><html>
<body>
<form name="f1">
<asp:Label name="lbl" runat="server" Text="Label" onclick="lblClick()"></asp:Label>
</form>
<script type="text/javascript">
function lblClick(){
document.f1.lbl.text="new text";}
</script>
</body>
</html>
</code></pre>
<p>It doesn't work, it gives me:
Microsoft JScript runtime error: 'document.getElementById(...)' is null or not an object ... ,
I can't even change the label text ....why?!!!</p>
http://stackoverflow.com/questions/1888774/how-can-i-validate-a-soap-request0How can I validate a SOAP RequestNick2009-12-11T15:23:37Z2009-12-12T00:29:36Z
<p>Hey y'all..</p>
<p>Is there a a quick way to validate SOAP messages? I have seen validator for JSON objects. Is there something like this for SOAP? I am recieveing a 'Bad Request: 400' error response with a AJAX post I am working on. I am not too familiar with SOAP as I typically just pass JSON. Can someone tell me what is wrong with my request or perhaps suggest a good way to debug it myself? Firebug error message is just 'Bad Request: 400' so it doesn't really help a terrible amount.</p>
<p>I would greatful for any insight on this.</p>
<p>Thanks!!</p>
<pre><code><soap:Envelope xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:soap='http://schemas.xmlsoap.org/soap/envelope/'><soap:Body><UpdateAutoChart xmlns='http://somewhere.org/hwconnect/services' soap:encodingStyle='http://schemas.xmlsoap.org/soap/encoding'>alertid=Test&companytoken=hw&autochart=false</UpdateAutoChart></soap:Body></soap:Envelope>
</code></pre>
<p>This is my POST function:</p>
<pre><code>function doPost(method, body) {
var soapRequest = "<soap:Envelope xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' ";
soapRequest = soapRequest + "xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:soap='http://schemas.xmlsoap.org/soap/envelope/'>";
soapRequest = soapRequest + "<soap:Body>"
soapRequest = soapRequest + "<" + method + " xmlns='http://somewhere.org/hwconnect/services' soap:encodingStyle='http://schemas.xmlsoap.org/soap/encoding'>";
soapRequest = soapRequest + body;
soapRequest = soapRequest + "</" + method + ">";
soapRequest = soapRequest + "</soap:Body></soap:Envelope>";
jQuery.noConflict();
jQuery.ajax({
beforeSend: function(xhrObj) {
xhrObj.setRequestHeader("Method", "POST");
xhrObj.setRequestHeader("Content-Type", "text/xml; charset=\"utf-8\";");
xhrObj.setRequestHeader("SOAPAction", "http://somewhere.org/hwconnect/services/" + method);
},
async: false,
type: "POST",
url: theURL,
contentType: "text/xml; charset=\"utf-8\";",
data: soapRequest,
error: function(XMLHttpRequest, textStatus, errorThrown) {
alert("XMLHttpRequest Failure: " + XMLHttpRequest.statusText);
}
});
</code></pre>
<p>}</p>
http://stackoverflow.com/questions/1831553/executing-function-located-in-code-behind-from-javascript0Executing function located in code behind from JavaScript?Etienne2009-12-02T08:50:11Z2009-12-11T19:16:44Z
<p>I am using ASP.NET 3.5.</p>
<p>In my code behind i have this code that i want to execute from my JavaScript.</p>
<pre><code>Private Sub CreateName()
Dim Name as String
Name = txtName.text
End Sub
</code></pre>
<p>And this is my JavaScript Function</p>
<pre><code> <script type="text/javascript">
function doSomething() {
document.elqFormName.action = 'http://now.eloqua.com/e/f2.aspx'
document.elqFormName.submit();
}
</script>
</code></pre>
<p>So what must I place inside my JavaScript function to execute my function in my code behind?</p>
<p>Thanks in advanced!!</p>
http://stackoverflow.com/questions/950303/cannot-select-from-a-datagrid-using-javascript-in-morzilla-ie80Cannot select from a datagrid using javascript in Morzilla,IE8vidhya2009-06-04T12:40:11Z2009-12-11T14:00:03Z
<p>hi....</p>
<p>In a form(File.aspx) i am generating another popup window (Lookup.aspx including a DataGrid). From that datagrid i can fill the textbox in File.aspx using javascript.It works in InternetExplorer7 & InternetExplorer8 .But in Morzilla the popup & datagrid is appearing,but i can't select from datagrid .</p>
<p>In same manner a calendar image onclick="displaycalendar(... );" i can select datetime to a textbox,it works in IE6 and IE7 but doent works in IE8 Morzilla.Please help me..</p>