Skip to main content

Posts

Showing posts from May, 2016

Sample Web.config / App.config file

Just a note to self and others who might be looking for a quick sample of web.config file --------------------------------- <?xml version="1.0" encoding="utf-8" ?> <configuration> <appSettings> </appSettings> </configuration> --------------------------------- Save the above code as file name "web.config" in your project folder. If you have IIS installed, follow the steps to add project to default website. Select Default Web Site:  Select "Content View" tab Right click to select "App Application" Enter Alias: <project_name> Enter Physical Path: <project_path> Enter in browser address bar: http://localhost/<project_name> Hope this can be helpful to you.