Server side validate
Server side validate extension that will validate all fields and have custom error massages, pasword validation, character length and all other advanced features
Read MoreServer side validate extension that will validate all fields and have custom error massages, pasword validation, character length and all other advanced features
Read MoreA lot of time I need to recognize the break line in a text or memo field to sostitute with <br>
At now I resolve this with this code
<%
dim formtext
formtext=(recordset_field .value)
if formtext <> "" Then
formtext=Replace(formtext, vbcrlf, "<br>")
End if
%>
<% =formtext %>
Two questions:
1) I need this function for more fields in the same recordset so I need to repeat this script each time with new variable
2)I adopt this solution because if the field is empty the "replace" command generate an error.
I'm sure that for your brain it should be better! (maybe with an extension!!!)
Thanks!
Guido.
Read More
What I am looking for is very simple - a server behaviour similar to the "Check if username exists" server behaviour. However, I would like to check for the existance of two field entries in a particular record and not only one - for example I would like to check for the existance of the person's username as well as the title of a particular article he would like to save to his list of favourites. Should this particular article allready have been saved to his list of favourites, I would like to redirect him to a page that will inform him that the article allready exists in his list of saved articles.
Read More