• Archives

    » ASP
Jan
5

Practical security on your application

Developing online applications is a way of life for a lot of programmers! It’s a great feeling working your but off day in and day out, night in and night out, sometimes all night and sometimes with no brakes! Then launch day comes and you are so happy any cant wait for people to start [...]

Nov
27

ASP db class

In developing a new asp forum for The Frashness I have come up with a ASP class. Just like the db_class for PHP this can be used to connect to a MySQL database and you can call the following methods; Update, Insert, and Delete.
[asp]
Function insert_db(tableNa, theSQL)
Set add = Server.CreateObject(“ADODB.Recordset”)
SQLinsert = “INSERT INTO ” & tableNa [...]