Hi, Gianluigi!
OK - I have the ASP Ajax Loader... not sure how to make it work.
Here's what I have:
1. A page with the AJAX form on it: (Pasted code below) [CODE]
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%> <!--#include file="dwzAjaxLoader/dwzAjaxLoader.asp" --> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Untitled Document</title> <% '********************************** ' http://www.DwZone-it.com ' Ajax Loader ' Version 1.0.7 '********************************** ObjName = "fmsubmit" Set dwzLoader_0 = new dwzAjaxLoader dwzLoader_0.Init() dwzLoader_0.SetContainer "data" dwzLoader_0.SetSource "testrs.asp", "fmstate;fmstate;form", "GET" dwzLoader_0.SetWaitImage "/dwzAjaxLoader/ajax_loader.gif" dwzLoader_0.SetLockBody "25", "#000000" dwzLoader_0.SetFade "300", "100" dwzLoader_0.SetModal "false" dwzLoader_0.SetCursor "wait" dwzLoader_0.SetMessages "Sales Search", "Searching for sales." dwzLoader_0.SetExtraParams "false@_@300@_@50@_@45%@_@35%@_@0@_@0@_@Left@_@Top@_@#000000@_@#FFFFFF@_@0@_@#000000@_@true@_@None@_@" dwzLoader_0.InsertHeadCode() '********************************** ' Ajax Loader '********************************** %> </head>
<body>
<div id="data"> <form action="" method="post" name="form1"> <input name="fmstate" type="text" /> <input onclick="<% '********************************** ' http://www.DwZone-it.com ' Ajax Loader - BUTTON '********************************** response.write( dwzLoader_0.InsertLink() ) %>" name="fmsubmit" type="button" value="Search" /> </form>
</div>
</body> </html>
[/CODE]
2. A second page with a simple recordset that filters on the form value from the first page.
I completed the AJAX form, but it doesn't seem to load the data.
Please tell me what I need to do.
- Do I need to add something in the DIV container? - Do I need to add an "Action" to my form? - Etc.
Thank you! Shane |
|
|