I have tried following code but it doesn't working well. Help me out
<system.webServer>
<rewrite>
<rules>
<rule name="removeExtention" stopProcessing="true">
<match url="(.*)" />
<conditions>
<add matchType="IsFile" negate="true"/>
</conditions>
<action type="Rewrite" url="/{R:1}.aspx" />
</rule>
</rules>
</rewrite>
</system.webServer>