Default Doc. in web.config

  • Thread starter Thread starter Jason Dean
  • Start date Start date
J

Jason Dean

Is there a way to set the "default document" through the web.config file in
asp.net?

example:

index.aspx
default.aspx
home.aspx

Thanks
 
not by default, but you could write a HttpHandler that used RewritePath to
implement this feature.

-- bruce (sqlwork.com)


| Is there a way to set the "default document" through the web.config file
in
| asp.net?
|
| example:
|
| index.aspx
| default.aspx
| home.aspx
|
| Thanks
|
|
 
Back
Top