Agnes,
the aspnet_regiis parameters you are using are :
-i ( which means "install" )
-r ( which means "install scriptmaps" )
-u ( which means "uninstall ASP.NET" )
If you use all of them in that sequence, you'll be
1. installing ASP.NET
2. installing ASP.NET's scriptmaps
3. uninstalling ASP.NET
....leaving you with ASP.NET uninstalled, as you have found out.
Don't use aspnet_regiis -iru
Use aspnet_regiis -ir
That will install ASP.NET and install the scriptmaps globally.
If you only want ASP.NET to be installed in the root
( leaving any applications you currently have installed configured for 1.1 )
then, only use aspnet_regiis -i
Juan T. Llibre, asp.net MVP
aspnetfaq.com :
http://www.aspnetfaq.com/
asp.net faq :
http://asp.net.do/faq/
foros de asp.net, en español :
http://asp.net.do/foros/
===================================