Walkthrough: Creating And Using Ajax-Enabled Web Service http://msdn.microsoft.com/e... Getting Started with jQuery in Visual Studio 2008 http://blogs.microsoft.co.i... jQuery Examples http://www.w3schools.com/jq... Ajax Control Toolkit http://www.asp.net/ajaxlibr... ......
ASP.NET Detect and alert forms authentication timeout With help from & thanks to PsychoCoder at http://www.dreamincode.net/... 1. Add sessionState to web.config <system.web> <sessionStatetimeout="1"... /> <!--minutes e.g. 120 = 2 hours--> 2. Add FormsAuthentication to web.config <authenticationmode="For... <!--timeout minutes (needs to be the same as in sessionState above) e.g. 120 = 2 ......
Tips and Tricks: ASP.NET AJAX 1.0 and User Controls Tips and Tricks: ASP.NET AJAX 1.0 and User Controls THANKS TO Bilal Haidar http://aspalliance.com/1274... ......
---------------------------... --SQL Server - left join data sums/counts/averages to date range to account for zero days or zero weeks --use recursive common table expression (CTE) and nested CTEs to accumulate "data dates" over the latest "n" weeks ---------------------------... ---------------------------... ......
original article: http://aspnetresources.com/... This one is the lesser evil. Aaron Boodman suggested a really neat solution: <a href="http://google.com/" onclick="window.open(this.h... 'popupwindow', 'width=400,height=300,scrol... return false;">Link text goes here</a> The advantages of these links are many: You can simply follow them. You can choose to open them in a new window by right-clicking. You can bookmark them ......
Method 1: 1) In HTML Header, before HTML Body, hourglass cursor <script language="javascript"> document.body.style.cursor = 'wait' 2) Add "Please Wait" Label (Visible = true) <asp:label id="lblPleaseWait" Text="Loading data, please wait..." ForeColor="Red" Visible="True" CssClass="labelCopy" Runat="server" Font-Size="Medium">...pl... wait...</asp:label> 3) At end of HTML Body, make label not visible, default cursor <script language="javascript"> document.getElementById('lb... ......
You might want to go to this link: http://ajax.asp.net/default... Install ASP.NET AJAX 1.0 on your machine Run the video (highlighted below) and follow along in Visual Studio 2005 Build a i. Data grid view ii. insert/update Data Details View iii. for a SQL Server table - with no server side code AJAX enable the whole thing Nikhil Kothari's Weblog ASP.NET AJAX: http://www.nikhilk.net/Entr... This link has a download for a nice set of cheat sheets: http://aspnetresources.com/... ......