Set sharpdevelop to write and run Asp.net.
As you can see below, make sure that your system has IIS, fontpage extension, and. NET Framework installed. Now let's start my story.
If the. NET Framework you installed is Version 1.1, generate the following BAT file.
File: Asp. net_1.20.setup.bat
C:
Cd c: \ WINDOWS \ Microsoft. NET \ framework \ v1.1.4322
Aspnet_regiis.exe-I
Aspnet_regiis.exe-LK
Pause
------------------------
If the. NET Framework you installed is version 2.0, generate the following BAT file.
File: Asp. net_2.2_setup.bat
C:
Cd c: \ WINDOWS \ Microsoft. NET \ framework \ v2.0.50727
Aspnet_regiis.exe-I
Aspnet_regiis.exe-LK
Pause
------------------------
Of course, the above c: \ windows \ Microsoft. NET \ framework \ v1.1.4322, c: \ windows \ microsoft. Net \ framework \ v2.0.50727 are not absolute and vary by system.
Run the created BAT file. The following information is displayed.
Start installing ASP. NET (2.0.50727 ).
.........
Finished installing ASP. NET (2.0.50727 ).
Setup has detected some errors during the operation. For details, please read th
E Setup Log File c: \ release E ~ 1 \ admini ~ 1 \ locals ~ 1 \ temp \ aspnetsetup_00002.log
C: \ windows \ microsoft. Net \ framework \ v2.0.50727> aspnet_regiis.exe-LK
W3svc/2.0.50727.0
W3svc/1/root/Printers/2.0.50727.0
Okay. The above information indicates that the installation is normal. The next step is to configure IIS. Specify the project directory in IIS. That's OK... you don't have to worry about it. I believe everyone is familiar with it. Pai_^
Okay. Now sharpdevelop is set. If sharpdevelop is not set, the following prompt dialog box will pop up:
Project is configured as DLL and no execution command is specified.
You can specifly an execution commmand in the project options.
Set sharpdevelop now. Click "project", select "project options", and then select the "debug" option. Select the "Start browser in URL" option and enter the path of the published site in the text box, for example:Http: // localhost/default. aspxAnd then save it. You can compile and run Asp.net in sharpdevelop.