How to populate asp.net drop down list from database by passing radio button list’s selected value as parameter with J Query, J Son? In my project I am taking off asp.net update panel where ever possible and replacing it with J Query Ajax. J Query Ajax is far better then asp.net Ajax and asp.net update [...]
Validating web site address at server side in asp.net using c-sharp. A detail web site address validation method where Regular expression is being used for a baisc web addrss validation, then web address is being splitted by dot and forward slash to check if it contains http: and if its defined more than once in [...]
Are you looking for a reasonable web host? Are you finding it difficult to choose a web host? Choosing right webhosting is difficult, as there is a range of webhosting companies are available which are providing this facility and it confuses us to choose the right one but if we find a top 10 list [...]
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 [...]
How to Use JQuery $.ajax()Â (AJAX) with Asp.net Drop down list’s “onchange” event and pass selected value as parameter. To perform above you need Jquery library, click on downloads to see where you can get Jquery. Following is the working example in which I am selecting a role from asp.net dropdown list and for that [...]