本文介绍了简单的命令按钮问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 我正在尝试创建一个简单的asp页面,其中有一个命令按钮 更新数据库。页面的URL如下所示: http ://MyServer.com/Update.asp?UserName = Tom 我的asp代码是这样的: % @语言= VBScript%> <! - #include file =" includes / openconnection.asp" - > StringUserName = Request.QueryString(" UserName") StringSQL = UPDATE Users SET Current = 0 WHERE UserName =''" & StringUserName& "''") 我需要构建命令按钮以便它显示在我的页面上然后 当用户点击时执行StringSQL按钮。我该怎么做? 谢谢, SamHi,I am trying to create a simple asp page that has one command button thatupdates a database. The URL of the page is like this: http://MyServer.com/Update.asp?UserName=TomMy asp code is like this:%@ Language=VBScript %><!--#include file="includes/openconnection.asp"-->StringUserName = Request.QueryString("UserName")StringSQL = UPDATE Users SET Current = 0 WHERE UserName = ''" &StringUserName & "''")I need to build the command button so that it shows up on my page and thenexecute StringSQL when the user clicks the button. How do I do this?Thanks,Sam推荐答案 这不是目标吗? 雷在工作Wouldn''t that be the goal?Ray at work 这篇关于简单的命令按钮问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
07-23 14:36