<% 

thesubj=server.htmlencode(request.form("subject"))
if thesubj="" then thesubj="无标题"
thepost="<html><head><title>"&amp;thesubj&amp;"</title></head><body>"
thepost=thepost&amp;"发表日期:"&amp;now&amp;"<hr>"
thepost=thepost&amp;server.htmlencode(request.form("posting"))
thepost=thepost&amp;"<!-- #include file=""4-3-2.inc""-->"
thepost=thepost&amp;"</body></html>"
'创建一个新的文件名
set mylinks=server.CreateObject("MSWC.NextLink")
thename="item"&amp;mylinks.GetlistCount("news.txt")+1&amp;".asp"
thenamepath=server.MapPath(thename)
'保存该发表内容到文件中
set myfileobj=server.CreateObject("scripting.filesystemobject")
set myoutstream=myfileobj.createtextfile(thenamepath,2)
myoutstream.write thepost
myoutstream.close
'对内容连接组件所需文本文件的更新
thenews=server.MapPath("news.txt")
set mynews=myfileobj.opentextfile(thenews,8,true)
mynews.writeline thename&amp;vbtab&amp;thesubj
mynews.close
%>

错误类型:
MSWC.NextLink (0x80004005)
错误: 无效的内容链接库列表文件



是不是没有创建到.?
但这句不是建了吗?set mylinks=server.CreateObject("MSWC.NextLink")
..本人刚学ASP.