Click here to Skip to main content
16,012,082 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Now am working with update panel
i want to add this update panel into my .aspx page how to do


I am using VS 4.0
then am taken Asp.net Web Application
i want to use ajax controls in my content pages
anybody give example for this
Posted

You can find lot of examples and how to use in webpage in below link...

Ajax Go through this link.

Example For Update Panel:
You need to put your code in content template like shown in below...

XML
<asp:UpdatePanel ID="upErrMsg" runat="server">
     <ContentTemplate>
           <asp:Label ID="lblErrmsg" runat="server" CssClass="ErrMsg"></asp:Label>
     </ContentTemplate>
 </asp:UpdatePanel>


Hope this will help full to you.

Thanks
Naveen
 
Share this answer
 
v2
You can use AjaxToolkit
It have commonly used ajax control that are easy to use.
See demo for each control
AjaxToolKit

Download Dll and use it
http://ajaxcontroltoolkit.codeplex.com/[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900