HTTP 错误 500.19Internal Server Error0x8007000d
回 1楼梦丫头的帖子
网站程序是吧?
-------------------------
回 3楼dongshan8的帖子
恩,你的这个方法全英文看不懂
-------------------------
那位大神指导下,谢谢
-------------------------
回 6楼dongshan8的帖子
不知道是不是最下面那个,下面的内容是最下面那个的
'文章文件夹获取
set rs_1=server.createobject('adodb.recordset')
sql='select FolderName from web_Models_type where [id]=5'
rs_1.open(sql),cn,1,1
if not rs_1.eof then
Article_FolderName=rs_1('FolderName')
end if
rs_1.close
set rs_1=nothing
'产品文件夹获取
set rs_1=server.createobject('adodb.recordset')
sql='select FolderName from web_Models_type where [id]=6'
rs_1.open(sql),cn,1,1
if not rs_1.eof then
Product_FolderName=rs_1('FolderName')
end if
rs_1.close
set rs_1=nothing
'案例文件夹获取
set rs_1=server.createobject('adodb.recordset')
sql='select FolderName from web_Models_type where [id]=50'
rs_1.open(sql),cn,1,1
if not rs_1.eof then
Case_FolderName=rs_1('FolderName')
end if
rs_1.close
set rs_1=nothing
%>
'首页基本信息内容读取替换
set rs=server.createobject('adodb.recordset')
sql='select web_name,web_url,web_image,web_title,web_keywords,web_contact,web_TopHTML,web_BottomHTML,web_description,web_copyright,web_theme from web_settings'
rs.open(sql),cn,1,1
if not rs.eof and not rs.bof then
web_name=rs('web_name')
web_url=rs('web_url')
web_image=rs('web_image')
web_title=rs('web_title')
web_keywords=rs('web_keywords')
web_description=rs('web_description')
web_copyright=rs('web_copyright')
web_theme=rs('web_theme')
web_consult=rs('web_contact')
web_TopHTML=rs('web_TopHTML')
web_BottomHTML=rs('web_BottomHTML')
end if
rs.close
set rs=nothing
%>
-------------------------
回 8楼dongshan8的帖子
哦,搞错了
-------------------------
回 10楼dongshan8的帖子
好的,我改下看看,麻烦了
-------------------------
回 10楼dongshan8的帖子
web.config文件改成你写的那样后,全站都变成500错误,没改之前只有后台的页有问题
-------------------------
回 13楼dongshan8的帖子
改了后,点错误页跳出这个
-------------------------
回 16楼dongshan8的帖子
好的,麻烦了
-------------------------
回 16楼dongshan8的帖子
谢谢,问题解决了,原来是父路径没有开启
赞0
踩0