|
|
Browse by Tags
All Tags » ASP.net rewrite
-
Hi All
I need a help on creating regular expression for strong password. conditions are At least 1 numeric At least one small letterAt least one capital letter Special character may or may not existlength should be minimum 8 charsany order of characters in passwordAllowed special characters are @\$=!:.#%I have one Expression i.e ...
-
Hi all
i have spent some much time trying to work this out..
the problem
I'm using ISAPI Rewrite 3 with i think is just like Apache url re writer. i;m trying to get 3 matches.
page/fine_london.asp
^page/(\w+)_(\w+)\.asp is matches
$0 = page/fine_london.asp AND $1 = fine AND $2 = ...
-
<rule>
<url>/([\w-]+).aspx</url>
<rewrite>/Default.aspx?PageName=$1</rewrite>
</rule>
<rule>
...
|
|
|