Wrox Programmer Forums
Go Back   Wrox Programmer Forums > ASP.NET and ASP > ASP.NET 2.0 > ASP.NET 2.0 Basics
|
ASP.NET 2.0 Basics If you are new to ASP or ASP.NET programming with version 2.0, this is the forum to begin asking questions. Please also see the Visual Web Developer 2005 forum.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the ASP.NET 2.0 Basics section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old May 29th, 2006, 08:38 PM
Authorized User
 
Join Date: Apr 2006
Posts: 35
Thanks: 0
Thanked 0 Times in 0 Posts
Default can't locate Configuration Manager

I cannot pull up the Configuration Manager page to select form-based authentication. If Windows Authentication was selected when the website was created can it later be changed to form-based authentication? My site is being hosted in a shared environment - is the form-based authetication not routinely allowed in shared environments?

Thank you,
 
Old May 30th, 2006, 02:09 PM
Imar's Avatar
Wrox Author
 
Join Date: Jun 2003
Posts: 17,089
Thanks: 80
Thanked 1,576 Times in 1,552 Posts
Default

Hi there,

What do you mean with this:
Quote:
quote:I cannot pull up the Configuration Manager page
What is the Configuration Manager page?

You can set the authentication scheme in the web.config file. Simple change (or add), the authentication node under <system.web>, like this:

<authentication mode="Forms">
  <forms loginUrl="~/Login.aspx" />
</authentication>

Hope this helps,

Imar
---------------------------------------
Imar Spaanjaars
Everyone is unique, except for me.
Author of ASP.NET 2.0 Instant Results and Beginning Dreamweaver MX / MX 2004
 
Old May 30th, 2006, 02:19 PM
Authorized User
 
Join Date: Apr 2006
Posts: 35
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Yes that helps, I was reading another (inferior book) that directed me to an icon that appears when using Visual Web Developer Express in a local environment. The icon does not appear when working in a shared hosted server environment, at least does not in my case.

I am going back to reread (completely) Beginning ASP 2.0.

Thank you
 
Old May 30th, 2006, 02:28 PM
Imar's Avatar
Wrox Author
 
Join Date: Jun 2003
Posts: 17,089
Thanks: 80
Thanked 1,576 Times in 1,552 Posts
Default

Right, maybe they were referring to the WebSite Administration Tool, accessible in VWD through the Website | ASP.NET Configuration option?

That does indeed work for local hosts only. However, this tool writes to your application's web.config file which you then upload to your provider. This tool can be handy for some configuration options that you can't remember how to add by hand; however, I find it quite limiting compared to the stuff you can do in the web.config file, so i hardly use it...

As an alternative, you can take a look at the ASPNET tab on your website in IIS, that writes to the config file as well. However, you probably can't access this tab for your site with your provider, so you're back to manually editing the config file.

Cheers,

Imar
---------------------------------------
Imar Spaanjaars
Everyone is unique, except for me.
Author of ASP.NET 2.0 Instant Results and Beginning Dreamweaver MX / MX 2004





Similar Threads
Thread Thread Starter Forum Replies Last Post
Configuration manager monika.vasvani ASP.NET 2.0 Basics 1 June 6th, 2008 12:49 PM
cant locate file during debug cprogrammer C++ Programming 0 October 10th, 2007 10:38 PM
Configuration Manager owain Visual Studio 2005 1 February 19th, 2007 09:48 AM
How to locate cursor after postback RockNRoll ASP.NET 1.0 and 1.1 Basics 2 July 4th, 2003 01:31 AM
Would like to locate errata torrent XML 1 June 3rd, 2003 03:09 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.