Using the MVC Homepage on a WebForm Page

I have an MVC application that I create to integrate regular WebForms into a website. WebForm pages will use the ReportViewer control, so I believe that this will not work in the regular MVC view, because ReportViewer uses ViewState, etc.

Is it possible to create a regular web form that uses the MVC View Master page? If so ... is it possible to use Html helper methods like RenderPartial?

+3
source share
2 answers

Is it possible to create a regular web form using the MVC View Home Page?

, , MVC .

... Html , RenderPartial?

. , Html , , .

WebForms MVC, , , WebForms, "" (, , ..). , .

+1

RenderPartial MVC ajax webforms html.

  if (Request.IsAjaxRequest())
   return View("someascx", model);
0

Source: https://habr.com/ru/post/1780109/


All Articles