asp.net
am new in asp.net and i want to design my page without inheriting the asp.net master file how can i exclude my asp.net masterfile codes
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Pradeep ShetPosted Jan 22, 2015, 8:02 AM
If you see your aspx page source view, you will find one attribute added at the top
MasterPageFile="~/...master".
First remove that attribute
Then remove the
Thats it..
Try out, this will remove your masterpage connection with contentpage.
Plz mark it as answered if it helped you.