url structure

  • Thread starter Thread starter Mark
  • Start date Start date
Are you sure this is not :
http://www.joeschmo.com/nav.aspx?page=/foo/bar.aspx

Alos, it could use URL rewriting (ie. intercepting the http request to
direct then to a real page ie. www.mysite.com/personal/scribe could behind
the scene be transformed to reach a real page such
www.mysite.com/personal.aspx taking scribe to do a search in a database and
to display my profile).

The result is similar (the url is used to convey values) though this could
be more friendly than www.mysite.com/personal.aspx?id=<som crptic id>

Patrice
 
"/foo/bar.aspx" is just a QueryString() value, like anyother.
Most likely they are passing it to a Remote parser or doing a Redirect to
the value
 
Mark,

I've seen that done before also. I believe the concept originated in PHP
where a lot of a lot of the ASP.NET constructs don't exist. I see no point
to a navigation mechanism like that in ASP.NET, with Usercontrols,
HTTPModules, etc. Did you see anything special it did? I think there's
definately a better way to do it in .NET.

-- Alex Papadimoulis
 
Back
Top