<cf_professional mode="on" jokelevel="none" billingtime="0">
<!--- <grin!> --->

Remember that technology I was moaning about....well I had written them a
letter back asking for more info...

I said I would share so here is their reply as well as a code sample... **
shaking head ** ....these people are whacked.

----------------------------------------------------------------
>Couple of concerns:
>1) What database is your technology using?

We use a database technology we invented at Aestiva.
The web database engine was built from the ground up, at Aestiva. For the
web. It's new. Requires no DBAs.
Built directly into the kernel of HTML/OS so there's no integration needed.
No drivers. It's so powerful
we used it this last year on the New York City
Marathon's home page which got 50,000 people in a
four hour period (they had a section that allowed friends of runners to
monitor their friends as they ran through their race).

The database is also open.. allowing easy import/export of datas from/to
other dataabases.
Using the database is point-and-click.

>2) Why can't we download eval software?

You can take the over-the-web demo. Other products
are not web-based so they can't do that. So we
do that for you. It's very imformative. Plus we
provide a 90-day unconditional money-back guarantee.
Our guarantee is the best in the business.

>3) You don't even show examples of tags?

Look in the UserCenter. There's a section called
"Sample Clips" It's filled with code examples.

I invite you to take the demonstration.
It's free. You get to speak with people who
know the product first-hand. In a few minutes
they'll show you how it works and the built-in
database and how it can help your team
by giving you the ability to whip out web-based
apps fast, make commercial web-based apps, etc.. I

There's no high pressure. Nothing like that.
You'll be speaking to a sales engineer, not
some brainless salesperson.

To set that up email me or call 1-310-328-8122 X 100
after we open this morning (after 9am Pacific Time)

I really think you'll get a lot out of it.

Thanks.

Sincerely,
Dave
------------------------------------------------------------
CODE SAMPLE:

<<
   # Sample Login Page
   # -------------------------------------------------
   # HTML/OS includes built-in Web-access security. So creating
   # a login screen is a matter of placing a form on a site
   # and having the form run an on-click overlay that checks the
   # password entered by the user. HTML/OS eliminates the
   # need to use .htaccess files and other server-side
   # configurations which  (if not reprogrammed) can be
   # 100 times as slow as HTML/OS's built-in security.
   #
   # In this example, we check a password file that includes
   # an expiration date for the user.
   #
   # Tags used:
   #   IF .. THEN .. /IF
   #   ISPAST
   #   COPY FILE=.. TS="," to .. /COPY
   #   DISPLAY .. /DISPLAY
   #   LAYOUT
   #   GOTO
   #
   # Pages used:
   #  login_expire.html - Login Application
   #  login_expire2.txt - Destination if Login is OK
   #  login_expire.txt  - Login File
  /#

   # set some variables /#
   Login1.LoginPage=PAGE
   Login1.LoginFile="login_expire.txt"
   Login1.EntryPage="login_expire2.html"
   IF Login1.Msg[1,1]="ERROR" THEN
     Login1.Msg="Enter Login and Password Below."
   /IF
>>

<html>
<title>Login Page With Expire</title>
<body bgcolor=white>
<br><br><font size=4 color=red><<Login1.Msg>></font><br>
<table border=0><tr><td>
<form method=post action=TESTLOGIN>
Login ID:<br><input type=text size=20 name=Login1.Id><br>
Password:<br><input type=password size=20 name=Login1.Pass>
<input type=submit name=Login1.Button value="LOGIN">
</form>
</td></tr></table>
<!-- ############ delete this code ############ -->
<table border=1 cellpadding=0 cellspacing=0>
<tr>
<td colspan=3 bgcolor=#FF0000><b>
<font color=#FFFFFF><b>Delete Me</b></font></td>
</tr>
<tr>
<td><b>Login</b></td>
<td><b>Password</b></td>
<td><b>Expire Date</b></td>
</tr>
<<
  # show logins on the screen! /#
  COPY FILE=Login1.LoginFile TS="," to Login1.Temp /COPY
  DISPLAY
    LAYOUT(Login1.Temp,"<tr><td>",[1],
           "</td><td>",[2],"</td><td>",[3],"</td></tr>")
  /DISPLAY
>>
</table>
<!-- ############ end ############ -->

</body>
</html>

<<overlay testlogin
   # copy the login file into mydata /#
   COPY FILE=Login1.LoginFile TS="," TO Login1.Data /COPY

   # trim spaces of entries /#
   Login1.Id = TRIM(Login1.Id)
   Login1.Pass = TRIM(Login1.Pass)
   Login1.Msg = "Access Denied."

   # fail if no login is specified /#
   IF Login1.Id[1,1] = "" THEN
     GOTO PAGE
   /IF

   # cut down mydata to the matching row(s) /#
   Login1.Data = GETCOLEQ(Login1.Data,1,Login1.Id)
   Login1.Data = GETCOLEQ(Login1.Data,2,Login1.Pass)

   # see if login and password entered is ok and set msg /#
   IF Login1.Data[1,1] = Login1.Id THEN
     IF ISPAST(Login1.Data[3,1]) THEN
       # login is ok but access has expired /#
       Login1.Msg = "Access Expired."
     ELSE
       # access is allowed /#
       Login1.Msg="Enter Login and Password Below."
       Login1.Id = ""
       Login1.Pass = ""
       GOTO Login1.EntryPage
     /IF
   /IF
   GOTO PAGE
>>

------------------------------------------------------------------
</cf_professional>

Erika
ReplaceNoCase("Erica", "c", "k", "ALL")

"One of the greatest pains to human nature is the pain of a new idea." -
Walter Bagehot
-----------------------------------------------------


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to