ASP database to personalise logging in
hi
thought from anyone on this.
i have created ASP page to login and be verified. The thing is i wanted to personalise this by bringing back the name from the database. here is my logging in program.
<% @Language="VBScript" %><% response.contenttype="text/vnd.wap.wml" %>
<?xml version="1.0"?>
<!DOCTYPE wml PUBLIC "-//WAPFORUM/DTD WML 1.1//EN" "http://www.wapforum.org/DTD/wml_1.1.xml">
<wml>
<card id="card1" title="Login">
<p>
Login Name : <input type="text" name="txtUser" size="10" maxlength="20" emptyok="false" id="t1"/>
Password :<input type="password" name="txtPass" maxlength="20" emptyok="false" id="t2" size="20"/>
<do type="accept" label="Submit!">
<go href="home.asp" method="get">
<postfield name="txtUser" value="a$txtUser"/>
<postfield name="txtPass" value="a$txtPass"/>
</go>
</do>
</p>
</card>
</wml>
thanks
|