有问题啦,各位DX帮忙,是pb读取asp内容的问题。
通过浏览器打开asp问题执行没问题,就是通过pb读取的时候有问题。
下面是asp的源码。
<!--#include file="conn.asp"-->
<%
set rs=Server.CreateObject("adodb.recordset")
sql="select * from ssmg_reg_code where system_code='"&request("system_code")&"' and system_regcode='"&request("system_regcode")&"' and soft_active=true"
rs.open sql,conn,1,1
if not rs.eof then
response.write "The Code Is OK!"
else
response.write "The Code Is ERROR!"
end if
'rs.close
'set rs=nothing
%>
用浏览器打开http://localhost/ssmg/chk_regcode.asp?system_code=3A15713F-9B3D-49AE-8CD6-08737E6F109E&system_regcode=56BCB25BD12625E1C57FB892B720DFDC
正确返回the code is ok
但用pb处理后就就返回the code is error
不知道怎么搞的,用的是pb11
下面是pb的代码
Try
loo_xmlhttp = Create oleobject
loo_xmlhttp.ConnectToNewObject("MSXML2.XMLHTTP.3.0")
loo_xmlhttp.open ("GET",ls_get_url + "?" + ls_args + "&m="+String(Second(Now())), false)
loo_xmlhttp.send()
ls_status_text = loo_xmlhttp.StatusText
ll_status_code = loo_xmlhttp.Status
If ll_status_c
相关问答:
Imports System.ComponentModel
Imports System.Web.UI
Imports System.Web.UI.Design
Imports System.Web.UI.WebControls
Namespace CBDAspNet.WebControls.HTML
''' <summary>
'' ......
调整了这里,那里出问题。
有没有什么好的方法,像调整对话框一样????
找个专门做页面的
在dreamweaver里调。。。也可以直接控制HTML代码
确实痛苦 感同身受呀
哈哈 坚决路过。
用DW吧,VS搞设计 ......
在asp里怎么调用java写的webservice方法,有很多方法
- <message name="RtPnrIn">
<part name="bstrPnrNO" type="s:string" />
<part name ......
各位大虾,我做了一个ASP得通讯录,但是除了查询功能好像其他都有问题,其中添加功能如下,能指导一下我哪里出错了吗?
<html>
<head>
<title>无标题文档</title>
</head>
<b ......
万网的服务器支持伪静态的,直接用rewrite在web.config文件写规则,也不用安装组件就可以实现伪静态,但是在时代互联服务器就用不了了,咨询它的客服,他说他们服务器(基本型C)不支持伪静态的.请问一下各位我该用什么方法 ......