Permalinks

  • Thread starter Thread starter shapper
  • Start date Start date
S

shapper

Hello,

I am creating a simple Asp.Net Blog system. All blog posts have an ID
which is an unique identifier (a GUID).

Now I wanna create permalinks. What format should I use? How can I do
this?

Could someone, please, help me out?

Thanks,

Miguel
 
Depending on the format used it can be a convenient way to map the permalink
to the actual page. For example the OP could parse all year/month/title.aspx
permalinks so that they all map to a default.aspx?id=someid request...

Laurent Bugnion said:
Hi,
Try :
http://en.wikipedia.org/wiki/Permalink and especially the "Popular
permalink formats" chapter.

This is likely most often done suign URL rewriting :
http://en.wikipedia.org/wiki/URL_rewriting

Why sue URL rewriting? What did it do to you? :-)

Laurent
--
Laurent Bugnion [MVP ASP.NET]
Software engineering, Blog: http://www.galasoft-LB.ch
PhotoAlbum: http://www.galasoft-LB.ch/pictures
Support children in Calcutta: http://www.calcutta-espoir.ch
 
Hi,
Depending on the format used it can be a convenient way to map the permalink
to the actual page. For example the OP could parse all year/month/title.aspx
permalinks so that they all map to a default.aspx?id=someid request...

Yes. I was trying to make a joke *S* Nevermind!

Greetings,
Laurent
Laurent Bugnion said:
Hi,
Try :
http://en.wikipedia.org/wiki/Permalink and especially the "Popular
permalink formats" chapter.

This is likely most often done suign URL rewriting :
http://en.wikipedia.org/wiki/URL_rewriting
Why sue URL rewriting? What did it do to you? :-)

Laurent
--
Laurent Bugnion [MVP ASP.NET]
Software engineering, Blog: http://www.galasoft-LB.ch
PhotoAlbum: http://www.galasoft-LB.ch/pictures
Support children in Calcutta: http://www.calcutta-espoir.ch
 
Back
Top