I am using query string . I want to make it URL friendly. for this i am using
<rule name="Rewrite for PARAMETER" stopProcessing="true">
<match url="FullProfile/(.+)" />
<action type="Rewrite" url="FullProfile.aspx?Id={R:1}" />
</rule>
But this is not working.
Go to the complete details ...