i am using URL rewriting in my asp.net application using regx
virtual URL is
/ProductDatabaseCMS/(?<category>\w*)/Product/(?<product>\w*)\.aspx
original URL is
/ProductDatabaseCMS/Product.aspx?PROD_ID=${product}
application path is ~/ProductDatabaseCMS
my application has master page that uses style sheet and the path is
~/App_Themes/Styles/Style_Sheet.css
i am requesting the URL
/ProductDatabaseCMS/(?<category>\w*)/Product/(?<product>\w*)\.aspx
from one of the webpage of application using Hyperlink control but in that case stylesheet is not working for this page Because it is taking path
~/ProductDatabaseCMS/(?<category>\w*)/Product/App_Themes/Styles/Style_Sheet.css
what i have to do in this case.