MarkKGreenway
MarkKGreenway

Reputation: 8764

Mixed Asp / Asp.NET / ASP.NET MVC Site

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

Upvotes: 1

Views: 234

Answers (2)

MarkKGreenway
MarkKGreenway

Reputation: 8764

The thing that finally fixed it was :

routes.IgnoreRoute("");

Upvotes: 2

mxmissile
mxmissile

Reputation: 11673

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

Upvotes: 1

Related Questions