Hi,
I had added some rules in the webconfig and everything works fine.
Actual url as http://website1:2093/showarticle.aspx?id=4
and it will be rewrite in the browser as
http://website1:2093/showarticle-4.aspx using this rule
<rewrite url="~/ShowArticle-(.+).aspx" to="~/ShowArticle.aspx?ID=$1" />
Now when i add a new level of page, all the images are not shown and not even my css. e.g
Actual url as http://website1:2093/showarticle.aspx?id=4
and it will be rewrite in the browser as
http://website1:2093/Article/4-About-global-warming.aspx using this rule
<rewrite url="~/Article/(.+)-(.+).aspx" to="~/ShowArticle.aspx?ID=$1" />
Regards,
Aragon