I created a aspx blog website which creates a page dynamically.At the time of page creation
the unique id automatically generated it's name was generated as given below
eg:
http://www.websitename.com/2016/f1.aspx
http://www.websitename.com/2016/f2.aspx
http://www.websitename.com/2016/f3.aspx
How can I change the url name of the page.
Ex:(websitename.com/2016/f2.aspx
to
websitename.com/2016/helloworld.aspx)
helloworld.aspx is the blog title which I've consider to given against f2.aspx.
How can I replace programmatically in C# code?
Response.Redirect("url")should work.