views:

113

answers:

2

i found an article that says:

"To access the Web Site Administration Tool, on the Website menu, click ASP.Net Configuration."

I dont see a Website menu in visual studio 2008 when i am looking at my asp.net mvc solution.

Is there any other way i can setup roles with asp.net membership?

A: 

Try http://blogs.msdn.com/rahulso/archive/2006/03/09/how-to-use-web-site-administration-tool-without-installing-vs-2005.aspx, altough this technique is not supported by microsoft.

Scoregraphic
i have visual studio 2008, i just dont see the menu
ooo
It's basically the same interface...but make sure, you have the web project selected (and not an additional library) and select Project -> ASP.NET configuration
Scoregraphic
+1  A: 

Yes, you can also setup Roles with asp.net membership using the web.config file, and actually defining the users/roles that are available.

As far as why you aren't seeing the menu: Are you in a website, or a project. Try converting your project to a web project, and see if the menu appears for you then.

Daryl