-->

How to add usercontrol dynamically in ASP.NET using Jquery.

Introduction

In this post, I am explain how to add usercontrol dynamically using JQuery in ASP.NET.

Steps :

Step - 1 : Create New Project.

Go to File > New > Project > Select asp.net web forms application > Entry Application Name > Click OK.

Step-2: Add a Usercontrol.

Go to Solution Explorer > Right Click on Solution Explorer > Add > New item > Select Web User Control Under Web > Enter name > Add.

Step-3: Add a Webpage and Design for Add Usercontrol dynamically.

Go to Solution Explorer > Right Click on Project name form Solution Explorer > Add > New item > Select web form/ web form using master page under Web > Enter page name > Add.

HTML Code
  1. <h3>Add Usercontrol Dinamically in ASP.NET</h3>
  2. <div>
  3. <input type="button" id="AddGadgets" value="Add Weather Gadgets" />
  4. </div>
  5. <div id="UpdatePanel">
  6.  
  7. </div>

Step-4: Write Jquery code for add Usercontrol into page dinamically.


  1. <script src="Scripts/jquery-1.7.1.js"></script>
  2. <script type="text/javascript">
  3. $(document).ready(function () {
  4. $("#AddGadgets").click(function () {
  5. $.ajax({
  6. url: "Default.aspx/AddGadGets",
  7. type: "POST",
  8. data: "",
  9. contentType: "application/json; charset=utf-8",
  10. success: OnSuccess,
  11. error: OnError
  12. });
  13. });
  14. });
  15. function OnSuccess(data) {
  16. $("#UpdatePanel").html(data.d);
  17. }
  18.  
  19. function OnError() {
  20. $("#UpdatePanel").html("Error!");
  21. }
  22. </script>


Step-5: Write a function in code behind page for get usercontrol as Json string.

  1. [WebMethod]
  2. public static string AddGadGets()
  3. {
  4. string content = "";
  5. Page pg = new Page();
  6. UserControl ucGadgets = (UserControl)pg.LoadControl("~/UCWeatherReport.ascx");
  7. pg.Controls.Add(ucGadgets);
  8. StringWriter sw = new StringWriter();
  9. HttpContext.Current.Server.Execute(pg, sw, true);
  10. content = sw.ToString();
  11. return content;
  12. }

Step-6: Run Application.



Hello ! My name is Sourav Mondal. I am a software developer working in Microsoft .NET technologies since 2010.

I like to share my working experience, research and knowledge through my site.

I love developing applications in Microsoft Technologies including Asp.Net webforms, mvc, winforms, c#.net, sql server, entity framework, Ajax, Jquery, web api, web service and more.

Related Posts: