<% ' ' Put this in your asp file ' Response.Write (IncludeURL("http://www.domain.com/path/file.ext?params=value")) ' Function IncludeURL(URL) 'Create an Http object, use any of the four objects Dim Http ' Set Http = CreateObject("Microsoft.XMLHTTP") ' Set Http = CreateObject("MSXML2.ServerXMLHTTP") Set Http = CreateObject("WinHttp.WinHttpRequest.5.1") ' Set Http = CreateObject("WinHttp.WinHttpRequest") 'Send request To URL Http.Open "GET", URL, False Http.Send 'Retrieves the response entity body as a string IncludeURL = Http.ResponseText End Function ' ' Put this in your asp file ' Response.Write (LastModified()) ' Function LastModified() ' Local variables Dim loFs, lsFile, lsPath, loFile, ldLast ' Create an instance of FileSystemObject object Set loFs = CreateObject("Scripting.FileSystemObject") ' Get the logical path of the current file ' (i.e. the file in which this code runs) lsFile = Request.ServerVariables("SCRIPT_NAME") ' Get the physical path of the file lsPath = Server.MapPath(lsFile) ' Get a handle/pointer to this file Set loFile = loFs.GetFile(lsPath) ' Get the "Last Modified" property of this file ldLast = loFile.DateLastModified ' Release the objects Set loFile = Nothing Set loFs = Nothing ' Write out the date in the long date ' format e.g. "MM/DD/YY" ' vbGeneralDate 0 Display a date and/or time. If there is a date part, display it as a short date. If there is a time part, display it as a long time. If present, both parts are displayed. ' vbLongDate 1 Display a date using the long date format specified in your computer's regional settings. ' vbShortDate 2 Display a date using the short date format specified in your computer's regional settings. ' vbLongTime 3 Display a time using the time format specified in your computer's regional settings. ' vbShortTime 4 Display a time using the 24-hour format (hh:mm). LastModified = CStr(FormatDateTime(ldLast, 1) & " " & FormatDateTime(ldLast, 4)) End Function ' ' Tracker for keeping score of hits to a site ' dir = string with path for this tracker ' Function Tracker(dir) ' Define some local stuff Dim path, date, ext, file, fso, fh, counter path = "C:/inetpub/vhosts/innebandy.no/httpdocs/web-data/tracker/" date = Year(now) & "_" & Right("00" & Month(now) ,2) & "_" & Right("00" & Day(now) ,2) ext = ".tracker" file = path & dir & "/" & date & ext ' Create FileSystemObject Set fso = CreateObject("Scripting.FileSystemObject") ' Read counter and increment if file exists If fso.FileExists(file) = True Then Set fh = fso.OpenTextFile(file) counter = CLng(fh.ReadLine) fh.Close counter = counter + 1 Else counter = 1 End if ' Write counter Set fh = fso.OpenTextFile(file, 2, true) fh.WriteLine(counter) fh.Close ' Release objects Set fso = Nothing Set fh = Nothing Tracker = CStr(counter) End Function %> Innebandy.no - World Floorball Championships 2000

World Floorball Championship 2000


WFC 2000

News

Programme

Guestbook

Tables

Match Statistics

Team Statistics

Player Statistics

Credits

All Star Team

WFC 2000 Ranking

Accomodation

Help

Information

Links

Rules

Souvenirs

Sponsors

Tickets

Venues

Federations
Norges Bandyforbund International Floorball Federation Norges Bandyforbund - Innebandy
Back Forward Open help page! Close this window!
Help

Hi and welcome to the help page =)
Optimal settings for the browser are: 1024x768 res, 32bit colors
Use Netscape 4.x and higher or MS Explorer 4.x and higher.
FYI: Explorer renders tables faster than Netscape.
If text is too small, adjust your browsers text-sizing.
To print the content of the pop-up-windows, press <Ctrl>+<P>

Technical questions related to this site should be directed to webmaster.
For questions related to WFC2000, take a look at the infomation page.

Swatch beat
Read more about it on the swatch web site.
12:30 Norwegian time is 479 beats.
15:00 Norwegian time is 583 beats.
17:30 Norwegian time is 687 beats.
20:00 Norwegian time is 791 beats.
One Swatch beat is the equivalent of 1 minute 26.4 seconds.
1.5 hour is approx. 62 beats.

Below you'll find a table with code-descriptions.

Code Descriptions
 Sort descending   -=- Sort column desc.
 Sort ascending   -=- Sort column asc.
 +/-  -=- G/GC
 #    -=- Number
 A    -=- Assists
 Agg  -=- Aggregate
 Code -=- Match code
 D    -=- Draw
 Eff  -=- Efficiency (G/S)
 G    -=- Goals
 GC   -=- Goals conceeded
 L    -=- Lost
 M    -=- Matches played
 Mi   -=- Penalty minutes
 n/a  -=- Not available
 P    -=- Points
 P#   -=- Period 1, 2, 3
 Pos  -=- Position
 S    -=- Shots total
 S%   -=- Save percentage
 SD   -=- Sudden death
 T?   -=- Team ?, ?='a code'
 W    -=- Won
Copyrights & Disclaimer

All graphics, pictures and content on these pages are the property of NBF Innebandyseksjonen.
Please do not copy any of these without the permission of NBF-IS.
We do not guarantee that all information on these pages are correct.
If you encounter some information you think is incorrect, please send us an e-mail!
© 2000

Questions or comments, please contact frank.nordseth@innebandy.no.
This page was last modified <% Response.Write (LastModified()) %> - Copyright © 2000-<%= Year(now) %>