Posted on: 5/25/2011 1:19:41 PM | Views : 722

I have master page in Pages folder
<%@ Master Language="C#" AutoEventWireup="true" CodeFile="MyMasterPage.master.cs" Inherits="MyNameSpace.MyMasterPage" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> </html> namespace MyNameSpace { public partial class MyMasterPage : System.Web.UI.MasterPage { protected void Page_Load(object sender, EventArgs e) { } } } and a class1 in App_Code folder
namespace MyNameSpace { public class Class1 { public Class1() { MyNameSpace.MyMasterPage mp = new MyNameSpace.MyMasterPage(); } } }
When I’m trying to create instance of MyMasterPage in Class1 I’m getting error:
The ty ...

Go to the complete details ...