Explore the Request an Extension

ASP

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 More
ASP

Asp text and Memo break line

A 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
ASP

Check if two field entries in one record exists

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
ASP

Reverse upload

I need an extension that will allow me to provide a facility on a site administration page to copy all the files contained in a pre-defined folder back to the local machine which the user is working on. Read More
ASP

Delete record and upload after a given amount of time

It would be great to have an extension that will delete a record and an upload belonging to that record after a given amount of time. Thus If I allow future clients to test ASP Upload and the SIP on my site I dont have to keep checking it as to what kinda image they have or may hav uploaded.


Regards

Kenny Read More
Newer articles Older articles