Based on Polyflydemo(Online Media) and a Memblock Strings Codesnippet, I have created something useful!! This is to pass a username and password to an ASP page, which checks them on a SQL database. The ASP returns a result code to DBPro, which tucks it into a memblock. This is a simple use here, but the combination can be used to keep all kinds of frequently changing data online, making your application even more dynamic

Or.. make web-based editors for your games.
Here is the ASP code for gamedata.asp
<%
opendb
username= request.querystring("username")
password = request.querystring("password")
sql = "select * from bpusers where username='" & username & "' and password='" & password & "'"
set rs =conn.execute(sql)
if not rs.eof then
response.write "success"
else
response.write "fail"
end if
rs.close
set rs=nothing
closedb
%>