So many aspects of ASP.NET are configurable it can be overwhelming. Things really get interesting when you start adding configuration options for your own applications.
Here's some ways to create your own configuration options.
ASP.NET Configuration FAQs:
Enjoy!
Revision number 2, Saturday, May 17, 2008 12:34:06 PM by spavkov
You must Login to comment.
Revision #2
Thu, Feb 14, 2008 11:52 PM
by mbanavige
|
Directory Structure in Asp.Net
ASP.NET 2.0 uses a new set of predefind Directory names for special work. In general, the ASP.NET directory structure can be determined by the developer's preferences.But there are afew reserved directory names. Here is the list of special directory names
|
Revision #6
Tue, Jun 17, 2008 10:28 AM
by XIII
|
File Extension
Here is a list of file extensions which are configured by default to be handled byASP.NET 2.0. asax used for application level logic global.asax ascx used for creating web user control. ashx used to create a custom httphandler asmx used to create web services
|
New
Thu, Jun 26, 2008 4:05 AM
by bmains
|
Creating Custom Configuration Sections in .NET
Every element in the configuration file maps to a class in the .NET framework. It's possible to expand upon this to create custom configuration sections. To do this, create a class that inherits from ConfigurationSection, like so: public class MySection
|
New
Sun, Jul 6, 2008 2:17 PM
by Mohamedcherifmo
|
Assembly Redirection Doesn't work in web.config (Assembly Binding Bug)
I had a problem with assembly redirection in web.config, when i wrote assembly redirection in the machine.config it worked perfectly, where as when I wrote it in the web.config it didn't work Problem: When you try to do assembly redirection in the web
|
New
Mon, Feb 4, 2008 8:00 AM
by shanselman
|
Configuring IIS
"IIS7 includes a comprehensive set of administration tools, including a brand new administration GUI, a new command line tool, and new managed code and scripting APIs to simplify day-to-day tasks for developers and administrators." Check out the pile of new
|
New
Mon, Feb 4, 2008 8:00 AM
by shanselman
|
Configuring SQL Server
Most ASP.NET sites talk to SQL Server or a backend SQL Database and there's a number of ways to manage that configuration. I always start with the Management Studio Expresswhen dealing with SQL Server. It's fast and lightweight. If you're using the full version
|
Revision #3
Mon, Feb 4, 2008 8:00 AM
by vik20000in
|
Administration Tools
ASP.NET 2.0 introduced the Web Site Administration Tool, as well as some command line tools you'll want to know how to use. Web Site Administration Tool Overview Expression Web and the ASP.NET Web Admin Tool-Here's how the Admin Tool and Expression
|