i am using MVC 4 with Razor Engine in my application,i needed to add the ASCX user control in partial view. But the question is How ?
Example :
FileName : PFDViewers.ascx
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="PFDViewers.ascx.cs" Inherits="System.Web.Mvc.ViewUserControl" %>-
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<asp:textbox runat="server"></asp:textbox>
Razor view:
@html.partialView("PFDViewers.ascx")
Is this possible to add the ASCX controls to Razor view.
Thanks in advance