I have my regular expression as ValidationExpression="^[^<>]$" I want to add number of char it will accept. say for example i want to limit my textbox(multiline) length to 200. how to achieve. I tried ValidationExpression="^[^<>]{0, 200}$" but its not working. what is the solution>
In my webpages I have references to js and images as such: "../../Content/Images/"Filename" In my code if I reference a file as above, it doesnt work so i have to write: "c:/miscfiles/"filename" 1-...