Recently I had a task that involved unencrypting an encrypted query string that had been encrypted on the front end using JQuery’s RC4 encryption located in file: JQuery.rc4.js. I needed to un-encrypt the encrypted string in the c# code-behind: Below is a line for line port of the JQuery.rc4.js. library functions I needed. I made [...]
Why onfocusout event is not firing in firefox I was using onfcousout event of text box to fire some javascript those were firing in IE but were not firing in Firefox. Then I found that onblur is firing on both Internet Explorer. So do not use onfocusout event instead use onblur. Tested on I.E 7.0 [...]
How to disable Asp.net Button with JQuery? Following java script function disables an asp.net button. Tested in IE 7 <asp:Button ID=”Button1″ runat=”server” Text=”Disable me” OnClientClick=”disAbleMe()” /> function disAbleMe() { $(“#<%=Button1.ClientID %>”).attr(“disabled”,”true”); } You can try other attributes too.
Json, Jquery, $.ajax(), asp.net and c# to get ajaxed data table rows passing multiple parameters I got a request from my client that before creating user they want to see the list of existing users with the like first name and last name. I didn’t want to use asp.net ajax update panel and full post [...]
Guys this is a nice piece of code which has been tested in IE7 to print the contents of a div. I got this code from http://www.webdeveloper.com/forum/showthread.php?t=152798 While printing keep in mind that on the printed copy you will lose all css styles. <script type=”text/javascript”><!– function ClickHereToPrint(){ try{ var oIframe = document.getElementById(‘ifrmPrint’); var oContent = [...]
I came accross a problem while I was trying to Get ASP.NET Radiobutton list Text using JQuery. I used the JQuery method $(‘#<%=RadioButtonList1.ClientID%>’).val(); but it was not returning selected value though same works for asp.net Dropdown list then I started searching over the internet but didn’t find any solution. After searching for an hour I [...]
 How to disable Submit button in Asp.net. Following script will disable the submit button when you click on it so user can not click it again and again. Register following javascript on page load event on which your submit button is. btnSave.ClientID is the button you want to disable when user clicks on it. [...]
We are using asp.net check box server side control in ajax update panel. These are bind to SQS server. We were facing a big problem. There were some busineess rule which were implementing on Post back i.e. on selection of check box from list other check box were getting disabled. We wrote some server side script [...]
I am using Modal popup Extender in my project which after click save button appears and takes Reason for doing that action as an input. I am using a text box labelling Reason for change; if that box is empty I am telling my transaction to roll back. So to make changes appear in database [...]
I was using following code to show Popup window //opens a pop up window function PopupWindow(url) { mywindow =window.open( url, “Popupwindow”, “location=1,status=0,scrollbars=1,width=800, height=600,resizable=1,toolbar=0″ ) Above code was showing Popwindow then Requirement changed and we needed a Modal popup Window. Then I found followin code which provides required functionality. //opens a pop up window function PopupWindow(url) { var [...]