Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

create ASP.NET website on windows 2000 server IIS 5 2

Status
Not open for further replies.

kurie

Programmer
Jun 4, 2008
170
ZA
Hi all
What do i have to install on windows 2000 server IIS 5 to run asp.net website. and what steps do i follow.

Thanks
 
thanks will try after work, since im working on the live server.
 
thanks will try after work, since im working on the live server.
get a test box, a virtual machine will works well too. The idea of "testing" in production will have disastrous results.

Jason Meckley
Programmer
Specialty Bakers, Inc.

faq855-7190
faq732-7259
 
Thanks guys.
I tried but its still not working, The website displays html elements only but doesnt display asp.net controls.
Do i have to do anything else after installing framework 1.1

thanks jmeckey for the suggestions.
 
this is the error message im getting now, i have tried changing the config file as the error is suggesting but with now lucky


Runtime Error
Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine.

Details: To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "Off".


<!-- Web.Config Configuration File -->

<configuration>
<system.web>
<customErrors mode="Off"/>
</system.web>
</configuration>


Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's <customErrors> configuration tag to point to a custom error page URL.


<!-- Web.Config Configuration File -->

<configuration>
<system.web>
<customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
</system.web>
</configuration>


 
thanks i wasnt running it on the server.
looks like its a problem with .net framework 3.5. Since i installed framework 1.1 on the server and i build my app using 3.5. my server is running window2000 so cant install .net framework 3.5.

Configuration Error
Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately.

Parser Error Message: Unrecognized attribute 'type'.

Source Error:

Line 2: <configuration> Line 3: <configSections> Line 4: <sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"> Line 5: <sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"> Line 6: <section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/>

Source File: C:\Inetpub\ Line: 4


Version Information: Microsoft .NET Framework Version:1.1.4322.573; ASP.NET Version:1.1.4322.573
 
thanks very much guys.
I will work with this, for now. i have edited some stuff in the webconfig file. and looks like things are working for now.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top