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

    How to create a partial page in Asp.net for Creating online Test Page Application using ajax call di

    hi develpopers,

    i am creating a web application for online examination.
    i have to create a online test page on my application
    so i have to implement ajax call div partial page for that . (withpout-Mvc)

    so how can i to do , if anyone know how to create ajax call div partial page suggest me to how can i done the task

    thanking you
    Paul.S
    'man becomes what he thinmks about'
  • #769519
    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."


  • Sign In to post your comments