<% ' ' 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!
Programme




Sunday 14/5:
1730: Norway - Latvia

Monday 15/5:
1730: Czech Rep. - Russia
2000: Switzerland - Finland

Tuesday 16/5:
1730: Switzerland - Czech Rep.
2000: Finland - Russia

Wednesday 17/5:
Free Day
National Holiday
Oslo 1000 Year Anniversary

Thursday 18/5:
1730: Russia - Switzerland
2000: Czech Rep. - Finland



Sunday 14/5:
1730: Sweden - Denmark

Monday 15/5:
Only Division B matches


Tuesday 16/5:
1730: Denmark - Latvia
2000: Sweden - Norway

Wednesday 17/5:
Free Day
National Holiday
Oslo 1000 Year Anniversary

Thursday 18/5:
1730: Latvia - Sweden
2000: Norway - Denmark




Friday 19/5:
1700: 7th Place
2000: 5th Place

Saturday 20/5:
1330: Semi Final 1*
1630: Semi Final 2

Sunday 21/5:
1230: Bronze Final
1530: Final

*If Norway qualifies for the semifinals their match will be played at 1330.





Sunday 14/5:
No matches

Monday 15/5:
1230: Germany - Australia
1500: Japan - Poland

Tuesday 16/5:
1230: Germany - Japan
1500: Poland - Australia

Wednesday 17/5:
Free Day
National Holiday
Oslo 1000 Year Anniversary

Thursday 18/5:
1230: Poland - Germany
1500: Australia - Japan



Sunday 14/5:
No matches

Monday 15/5:
1730: Estonia - Austria
2000: Hungary - Great Britain

Tuesday 16/5:
1230: Austria - Great Britain
1500: Estonia - Hungary

Wednesday 17/5:
Free Day
National Holiday
Oslo 1000 Year Anniversary

Thursday 18/5:
1230: Great Britain - Estonia
1500: Austria - Hungary




Friday 19/5:
11301100: 15th Place : 4th Group 2 - 4th Group 1
1400: 13th Place : 3th Group 1 - 3th Group 2
1700: Semi Final 1 : 1st Group 1 - 2nd Group 2
2000: Semi Final 2 : 1st Group 2 - 2nd Group 1

Saturday 20/5:
1130: Bronze Final (11th Place)
1430: Final (9th Place)


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