views:

150

answers:

2

I am trying to set up so that my default page http://demo.liginsurance.com/ goes to http://demo.liginsurance.com/default.asp

currently it goes to http://demo.liginsurance.com/Home/Index

what route can i write or ignore to get that to work...

-Thanks

Hurricane

+1  A: 

Read about Webforms routing here, this should help you with what you need.

mxmissile
+1  A: 

The thing that finally fixed it was :

routes.IgnoreRoute("");

Hurricanepkt