hi my frnds i know asp.net but i dont know how to use ajax and what it is used for...help me and tell me how and where can i learn the ajax tools
Ajax is simple to learn. First I will explain what is Ajax. AJAX is asynchronous java script. Using ajax you can create websites more user friendly and attractive. Ajax offers calander controls, pop ups, textbox water marks etc. You can download ajax tool kit and use it in Visual studio. You can find tool kit and sample here http://www.asp.net/ajax/ajaxcontroltoolkit/samples/
ajax has some functionality added for asp 3.5 and later, u can add ajax toolkit in your project and can add some dynamic tools in your project that can make you page more interactive and user friendly...like updatepanel and script manager etc....
Dear you learn Ajax control in asp.net with help of Microsoft official site you know any information on that you visit this site
ajax controls are very rich in functionality, uses javascript for these functions and make your ASP.net project to ASP.net3.5. remember these basic things
lot of examples are thereon asp.net site you can use them and take the advantage. Also just you will need to add the dll to use the ajax controls.
Ajax stands for Asynchronous JavaScript and XML.AJAX is not a new programming language. IT is the art of exchanging data with a server, and update parts of a web page without reloading the whole page. Ajax tool use in asp.net: <html> <body> <form runat="server"> Enter a date between 2005-01-01 and 2005-12-31: <br /> <asp:TextBox id="tbox1" runat="server" /> <br /><br /> <asp:Button Text="Submit" runat="server" /> <br /><br /> <asp:RangeValidator ControlToValidate="tbox1" MinimumValue="2005-01-01" MaximumValue="2005-12-31" Type="Date" EnableClientScript="false" Text="The date must be between 2005-01-01 and 2005-12-31!" runat="server" /> </form> </body> </html> To more knowledge follow this Link: http://www.w3schools.com/Ajax/ajax_intro.asp
Hi..... AJAX is a combination of Web programming languages designed to alter the tradition Web-server centric view of interactive Web content by offloading some processing to the Web browser. Now In .Net3.5 Ajax is inbuilt......... Web Designer | Real Estate Web Design
Hello....... AJAX is a Free programing tool or framework which is used to creating efficient web application.Now it is inbuilt tool in latest .NET framework and website created with AJAX work across all popular browsers. Web Designer | Real Estate Web Design
AJAX, i.e., Asynchronous JavaScript and XML, is the technique that can be used to have communication between the client and server without needing a postback. The benefit of avoiding postback is faster response to the user, the page in the browser is not changed/refreshed/posted so the user can continue to use it while data is sent to the server and user actions like keypresses can also be communicated to the server to provide more meaningful results (example: autosuggest), i.e., enhanced overall usability of the web application. You can find more details on www.codeproject.com/Articles/401903/AJAX-for-Beginners-Part-Understanding-ASP-NET-AJ http://www.tutorialspoint.com/asp.net/asp.net_ajax_control.htm