CSS tricks
This is on the request of some of my readers to show how effective Asp.net menu control is by using CSS Control Adapter. Most of the folks either have no idea of what CSS Adapter is or have some problem in integrating that with their applications. So, In this post I will brief you guys how can we use CSS Adapter to format the design of Asp.net Menu Control. Before we start, let me dig out why would somebody use CSS Adapter and what does that do ? Have you ever notice by viewing the source of your ......
If the AJAX call to the server take too much time, then there is a possibility that user might press some other buttons or some other event occurred which will cause your AJAX call to stop and make a new request. To overcome this situation, I decided to have div on the top of the page so that while AJAX call is in progress user cannot do any thing else. So I simply Drag and Drop a Update Progress Control and write the following stuff. <asp:UpdateProgress ID="UpdateProgress1" runat="server"> ......