I created a aspx blog website which creates page dynamically.
and uses unique id generated at the time of page creation as it’s name.
eg:
http://www.websitename.com/2016/f1.aspx
http://www.websitename.com/2016/f2.aspx
http://www.websitename.com/2016/f3.aspx
If i use this naming convention, do i have to worry about SEO problems?
whether the the search engines index my website and the blogs?
I need to change the dynamically created page name to the page title. How can i do it?
and also i need to remove the .aspx from the blog page.
eg :
/f1.aspx => /HelloWorld
/f2.aspx => /ThisCode
2
Answers
Try this… although i didn’t tried it myself yet… but i am pretty sure ..it should work… Add these lines in your webconfig to remove .aspx extension from the end…
Try these links…. these might come handy
how to change title of aspx page dynamically on page load
Page.Title vs Title tag in asp.net
how can i create a dynamic page in asp.net (C#)?