请问这样的相当于后台控制的代码怎么用?
想预留一个管理员可以直接使用SQL语句的地方,可以输入insert或delete 语句,
比如想删除某个表的数据,在文本框中输入“delete from table where aa=xx”等,点提交就可以让服务器SQl来执行,可以吗?
<!--#include file="conn.asp"-->
<form name="form1" method="post" action="">
<input name="textfield" type="text" size="100">
<input type="submit" name="Submit" value="提交">
</form>