You must Sign In to post a response.
  • Category: ASP.NET

    Can we Create Partial page in Asp.Net WebForm

    hiu developers

    i am having a doubt ,
    i want to create a partail page in Asp.Net WebForm without MVC.
    i am just googled it but there is available options only with MVC

    so can we create a partial page in Asp.Net WebForm ..?

    if we can do partial page in Asp.Net WebForm means please suggest me to how can i dines the task

    thanks with
    Paul.S
    'man becomes what he thinks about'
  • #769518
    Hi Paul,

    Yes, we can create a partial page kind of view with the help of jquery during ajax.

    Just create a page which you want to load with single form. Whenever you need to load that page, just use the below code,

    Page1
    <div id="divDynamicPage"></div>

    Page2 (Partial View page)
    Any design

    $("#divDynamicPage").load('page2.aspx');

    Let me know if you have any questions.

    Regards,
    V.M. Damodharan
    "Your talent will be worthless, when you have fear and tension."

  • #769522
    Hi
    Paulraj

    You can use usercontrol for your webforms then rag and drop use them

    Name : Dotnet Developer-2015
    Email Id : kumaraspcode2009@gmail.com

    'Not by might nor by power, but by my Spirit,' says the LORD Almighty.

  • #769581
    Hi Paul,

    In webforms we can make use of web user controls to load a page in another page.
    This can be done using partial views in asp.net mvc.

    Sridhar Thota.
    Editor: DNS Forum.


  • Sign In to post your comments