ASP注册问题
VBScript code:
<%
if request.form.count<>0 then
id=request.querystring("id")
SQL = "Select username,contrl from users where username='"&id&"'"
set rr=conn.execute(sql)
contrl=rr("contrl")
regf=rr("username")
set rr = nothing
if contrl=1 or id=regf then
sql="select * from users where username='"®f&"'"
set rm=conn.execute(sql)
regfrom=rm("regfrom")
username=request.Form("username")
userpass=request.Form("password")
qq=request.Form("qq")
province=request.Form("province")
city=request.Form("city")
bank_name=request.Form("bank_name")
bank_num=request.Form("bank_num")
bank_bank=request.Form("bank_bank")
if id="" then
id="admin"
end if
if username<>"" then
if Cint(request.Form("codestr")) = Session("GetCode") then
sql="select username from users where username='"&username&"'"
set rr=conn.execute(sql)
if rr.eof then
SQL = "Select * from users"
Set Rs = Server.CreateObject("ADODB.Recordset")
Rs.Open SQL,conn,1,2
Rs.addnew
相关问答:
owc11满足不了要求,有没有更好点的,asp能调用的
目前没发现,帮你顶!
应该没有了吧
自已写。顶
帮顶,关注!
好像就这个了,目前还没看到其他得上市使用。。。帮顶!
自己再顶一下
好像是没有 ......
调整了这里,那里出问题。
有没有什么好的方法,像调整对话框一样????
找个专门做页面的
在dreamweaver里调。。。也可以直接控制HTML代码
确实痛苦 感同身受呀
哈哈 坚决路过。
用DW吧,VS搞设计 ......
<?xml version="1.0"?>
<root>
<status>433</status>
<msg>这个是汉字</msg>
<serialno>123</serialno>
</root>
如何用ASP读取 status值 ......
3个radioButton
一个Button
一个label
C# code:
protected void Button1_Click(object sender, EventArgs e)
{
string str = null;
RadioButton rdo=(RadioButton)sender;
......