|
 |
asp_components thread: NextLink/Content Linker problems.... :-(
Message #1 by "Fabricio Silva" <fabricio_silva@n...> on Tue, 22 May 2001 17:50:23
|
|
ANYONE who knows anything about NextLink:
I have a problem...
I am bent on becoming a bona fide ASP developer! However, when
recently trying to incorporate the content linker component to the new
corporate website I'm building for my company, I keep getting the following
error:
MSWC.NextLink error '80004005' ERROR Can not open file
I've gone to the Microsoft site, as well as a few other sites, but cannot
get any documentation on how to prevent this error from occurring. I am
emailing you as a last resort, as I assume you must be quite busy.
Using IE please go to:
http://www.eurekabroadband.com/fab/newcorpsite/products/prod_man_apps2.asp
I'd be very appreciative if you could give me a solution to this problem.
Here's the code I'm using, followed by the text file:
<%
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
'
' Sub WriteLine
'
' This routine prints a line of HTML to the browser and
' includes a carriage return/line feed at the end of the
' line. That cleans up the HTML output for debugging
' purposes.
'
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
Sub WriteLine(strData)
Response.Write strData & vbCrLF
End Sub
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
'
' Sub WriteComment
'
' This routine prints a comment into the HTML output.
'
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
Sub WriteComment(strData)
WriteLine "<!-- " & strData & " -->"
End Sub
%>
<%
Set objNL=Server.CreateObject("MSWC.NextLink")
myListCount=objNL.GetListCount("man_apps_LNavLinks.txt")
For URLCounter=1 to myListCount
myCurrentURL=objNL.GetNthURL("man_apps_LNavLinks.txt",URLCounter)
WriteLine "<TR>"
Response.Write "<TD>"
Response.Write myCurrentURL
WriteLine "</TD>"
WriteLine "</TR>"
Response.Write "<BR>"
Next
%>
TXT FILE:
../prod_man_apps_fw.asp Firewall
../prod_man_apps_vpn.asp VPN
../prod_man_apps_eav.asp E-mail Anti-virus
../prod_man_apps_bgp4.asp BGP4
../prod_man_apps_mn_off.asp Managed NAT (Off Net)
../prod_man_apps_mn_on.asp Managed NAT (On Net)
../prod_man_apps_mnr.asp Managed Router
|
|
 |