主题:  如何用dw修改asp源程序 !急~~

dave36

职务:普通成员
等级:1
金币:0.0
发贴:6
#12004/4/10 15:48:43
我下了个源码?但用dw打开index.asp却显示错误,编辑不了,请问高手改如何在DW下修改?

<!--#include file="inc/config.asp"-->
<!--#include file="mdb.asp"-->
<!--#include file="inc/format.asp"-->
<!--#include file="inc/error.asp"-->
<!--#include file="inc/inc.asp"-->
<!--#include file="inc/indexnew.asp"-->
<!--#include file="inc/index_body.asp"-->
<%
stats="首页"
dim founderr,errmsg
founderr=false
errmsg=""

if request("page")<>"" then
if not isInteger(request("page")) then
founderr=true
errmsg=errmsg+"<br>"+"<li>非法的日记id参数。"
end if
end if

if founderr then
call diserror()
response.end
else
sql="select articlecount,softcount,coolsitescount,djcount,newscount,piccount,jscount,counter from allcount"
set rs=conn.execute(sql)
articlecount=rs("articlecount")
softcount=rs("softcount")
coolsitescount=rs("coolsitescount")
djcount=rs("djcount")
newscount=rs("newscount")
piccount=rs("piccount")
jscount=rs("jscount")
counter=rs("counter")
sql="UPDATE allcount SET counter = counter + 1"
conn.execute (sql)
rs.close
set rs=nothing
call head()
call menu()
call index_body()
call footer()
end if
%>



闪刃小周

职务:普通成员
等级:1
金币:1.0
发贴:165
#22004/4/13 9:38:36
我用DWmx可以改啊



achou

职务:普通成员
等级:1
金币:0.0
发贴:36
#32004/4/20 11:06:32
我都是用DW改的.很好用啊


-----------------------

菜鸟级-----傻瓜
我的小站#-#

缺缺

职务:管理员
等级:8
金币:41.0
发贴:9620
#42004/4/20 11:13:53
代码要经过服务器的解释才可以生成HTML代码给浏览器解释,所以原始代码在DW中很多时候是不能正常显示的