InternetUnicodeHTMLCSSScalable Vector Graphics (SVG)Extensible Markup Language (xml)ASP.NetDocument Object Model (DOM)JavaScript Ad Rotator ComponentBrowser Capabilities Component Draft for Information Only
Content
ASP Server Components
ASP Server ComponentsSome of the ASP server components are the common features found in dynamic web pages. These base ASP server components are provided to enrich the pre-made functions of ASP technology for making dynamic and interactive web pages. However, some IIS pre-made components are not installed for all version of IIS. Ad Rotator, Browser Capabilities, Content Linker, Content Rotator, Counters, Logging Utility, My Info, Page Counter, Status, and tools are not installed with IIS 6.0. However, if you upgrade your Web server from a previous version of IIS, the pre-made components are not removed. Some IIS pre-made components, ASP content rotator and nextlink, are deprecated in IIS7. And most IIS pre-made components are either not installed with IIS7 or their usage is not supported. Content Linking componentThe Content Linking component can be used to create a Nextlink object that acts as a page indicatior in an ASP page for controlling the ASP page navigation in a collection of ASP pages. The function of the Nextlink object is to automate the generating and updating the tables of contents and navigational links to previous and subsequent web pages according to a Content Linking List file. The Content Linking List file contains the list of the family of linked web pages. The Content Linking List file is stored on the web server and is used by the Nextlink object as the reference. Therefore a Nextlink object is suitable for an online newspapers or forum message listings etc. File NameThe file name of the Content Linking component is Nextlink.dll. SyntaxSet NextLinkName = Server.CreateObject( "MSWC.NextLink" ) ParametersNextLinkName The parameter "NextLinkName" is the name assigned to the instance of the Nextlink object created by the call using the Server.CreateObject. RemarkThe Content Linking component does not work with Internet Information Server 7 (IIS7). NextLink.GetListCount MethodNextLink.GetListCount method is used to count and retrieve the total number of web pages listed in the Content Linking List file. SyntaxNextLinkName.GetListCount( listURL ) ParametersNextLinkName The parameter "NextLinkName" is the name of the instance of the Nextlink object to be set. listURL The parameter "listURL" is used to specify the location of the Content Linking List file. Return ValuesThe NextLink.GetListCount method returns an integer of the total number of items linked in the Content Linking List file. NextLink.GetListIndex MethodNextLink.GetListIndex method is used to retrieve the index number of the current web page in the Content Linking List file. Syntax SyntaxNextLinkName.GetListIndex( listURL ) ParametersNextLinkName The parameter "NextLinkName" is the name of the instance of the Nextlink object to be set. listURL The parameter "listURL" is used to specify the location of the Content Linking List file. Return ValuesThe NextLink.GetListIndex method returns an integer of an index number specifying the position of the current item linked in the Content Linking List file. The index number of the first item linked in the Content Linking List file is 1 and the NextLink.GetListIndex method returns 0 if the current page is not linked in the Content Linking List file. NextLink.GetNextDescription MethodNextLink.GetNextDescription method is used to retrieve the text description of the next web page in the Content Linking List file. Syntax SyntaxNextLinkName.GetNextDescription method( listURL ) ParametersNextLinkName The parameter "NextLinkName" is the name of the instance of the Nextlink object to be set. listURL The parameter "listURL" is used to specify the location of the Content Linking List file. Return ValuesThe NextLink.GetNextDescription method returns an ASCII string of the description of the next item linked in the Content Linking List file. If the current page is not linked in the Content Linking List file, the NextLink.GetNextDescription method returns the desctription of the last item on the Content Linking List. NextLink.GetNextURL MethodNextLink.GetNextURL method is used to retrieve the URL of the next web page in the Content Linking List file. Syntax SyntaxNextLinkName.GetNextURL method( listURL ) ParametersNextLinkName The parameter "NextLinkName" is the name of the instance of the Nextlink object to be set. listURL The parameter "listURL" is used to specify the location of the Content Linking List file. Return ValuesThe NextLink.GetNextURL method returns the URL of the next item linked in the Content Linking List file. If the current page is not linked in the Content Linking List file, the NextLink.GetNextURL method returns the URL of the last item on the Content Linking List. NextLink.GetNthDescription MethodNextLink.GetNthDescription method is used to retrieve the text description of the index Nth item in the Content Linking List file. Syntax SyntaxNextLinkName.GetNthDescription method( listURL,i ) ParametersNextLinkName The parameter "NextLinkName" is the name of the instance of the Nextlink object to be set. listURL The parameter "listURL" is used to specify the location of the Content Linking List file. i The parameter "i" is used to specify the index number of an item in the Content Linking List file. Return ValuesThe NextLink.GetNthDescription method returns an ASCII string of the description of the index Nth item linked in the Content Linking List file. NextLink.GetNthURL MethodNextLink.GetNextURL method is used to retrieve the URL of the index Nth item in the Content Linking List file. Syntax SyntaxNextLinkName.GetNthURL method( listURL,i ) ParametersNextLinkName The parameter "NextLinkName" is the name of the instance of the Nextlink object to be set. listURL The parameter "listURL" is used to specify the location of the Content Linking List file. i The parameter "i" is used to specify the index number of an item in the Content Linking List file. Return ValuesThe NextLink.GetNthURL method returns the URL of the index Nth item linked in the Content Linking List file. NextLink.GetPreviousDescription MethodNextLink.GetPreviousDescription method is used to retrieve the text description of the previous web page in the Content Linking List file. Syntax SyntaxNextLinkName.GetPreviousDescription method( listURL ) ParametersNextLinkName The parameter "NextLinkName" is the name of the instance of the Nextlink object to be set. listURL The parameter "listURL" is used to specify the location of the Content Linking List file. Return ValuesThe NextLink.GetPreviousDescription method returns an ASCII string of the description of the previous item linked in the Content Linking List file. If the current page is not linked in the Content Linking List file, the NextLink.GetPreviousDescription method returns the desctription of the last item on the Content Linking List. NextLink.GetPreviousURL MethodNextLink.GetPreviousURL method is used to retrieve the URL of the next web page in the Content Linking List file. SyntaxNextLinkName.GetPreviousURL method( listURL ) ParametersNextLinkName The parameter "NextLinkName" is the name of the instance of the Nextlink object to be set. listURL The parameter "listURL" is used to specify the location of the Content Linking List file. Return ValuesThe NextLink.GetPreviousURL method returns the URL of the Previous item linked in the Content Linking List file. If the current page is not linked in the Content Linking List file, the NextLink.GetPreviousURL method returns the URL of the last item on the Content Linking List. Content Linking List FileThe Content Linking List File is used to store the ordered entries of linked web pages in a collection for the Content Linking component. Each linked web page details is stored on one single line in the list. Each line should end with a carriage return and each detailed item on a line must be separated by a TAB character. The Content Linking List File should be stored under the web server directory so that the Content Linking List File can be accessed through a virtual path. Besides the URL of the linked web page, text description and comments are allowed as optional detailed items for each item entry placed after the URL of the linked web page and separated by a TAB character. The change in a Content Linking List File may need to restart the IIS services in ordered to make the changes become effective. Syntax(Web-page-URL [ text-description [ comment]])+ Parameters[...] The parameter "[" & "]" is the indicator of the bracketed parameters by a pair of square brackets "[...]" is an optional item unless other specified. (...)+ The parameter "+" is the indicator of the bracketed property parameters by a pair of brackets "(...)" can be repeated one or more times. Web-page-URL The parameter "Web-page-URL" is used to specify the virtual or elative URL of the linked web page. The URL path only supports the format of "filename" or "directory\filename" and absolute URLs starting with "http:", "//" or "\\" are not supported and will not be processed by the methods such as GetNextURL and GetListIndex. The list of the content path should be checked to ensure there is no collisions or infinite loops can occur. text-description The optional parameter "text-description" is used to specify the description of the Web-page-URL. And the text-description should be separated by a TAB character with the Web-page-URL. comment The optional parameter "comment" is used to specify the detailed description of the Web-page-URL. And the text of comment is not processed by the Nextlink object and should be separated by a TAB character with the text-description. Examples
©sideway ID: 130200006 Last Updated: 2/13/2013 Revision: 0 Ref: ![]() References
![]() Latest Updated Links
![]() ![]() ![]() ![]() ![]() |
![]() Home 5 Business Management HBR 3 Information Recreation Hobbies 8 Culture Chinese 1097 English 339 Travel 18 Reference 79 Computer Hardware 254 Software Application 213 Digitization 37 Latex 52 Manim 205 KB 1 Numeric 19 Programming Web 289 Unicode 504 HTML 66 CSS 65 SVG 46 ASP.NET 270 OS 431 DeskTop 7 Python 72 Knowledge Mathematics Formulas 8 Set 1 Logic 1 Algebra 84 Number Theory 206 Trigonometry 31 Geometry 34 Calculus 67 Engineering Tables 8 Mechanical Rigid Bodies Statics 92 Dynamics 37 Fluid 5 Control Acoustics 19 Natural Sciences Matter 1 Electric 27 Biology 1 |
Copyright © 2000-2025 Sideway . All rights reserved Disclaimers last modified on 06 September 2019