Browsing ASP/ HTML
Chat program
Chat program useing arrays.
Multiple Selection
Enable Multiple Selection in a list field.
Tell a friend ver 1.1
Tell a friendOriginal Author: Bhushan-CodeTell a FriendSo once he clicks on that hyperlink the URL is carried to mail.
Search web site
Search the web siteOriginal Author: Bhushan-CodeAs the website increases you should provide an option for the user to trace out what he is looking for, in a very short time.
Simple ASP Calender
Simple ASP CalenderOriginal Author: Bhushan-Code'Function to Return the number of Days in a monthfunction findMonth(strDate, strYear) dim days if strDate = 4 or strDate = 6 or strDate = 9 or strDate = 11 then days = 30 elseif strDate = 2 AND strYear/4 = int(strYear/4) then days = 29 elseif strDate = 2 then days = 28 else days = 31 end if findMonth = daysend function'Function will return the numeric value last or Next Monthfunction fnChangeMonth(strMonth, strDirection) if strDirection = "previous" then if strMonth = 1 then tempstrMonth = 12 else tempstrMonth = strMonth - 1 end if else if strMonth > 11 then tempstrMonth = 1 else tempstrMonth = strMonth + 1 end if end if fnChangeMonth = tempstrMonthend function'Function will return a date format from the qstring dd'I use querystring called dd in this format 01012000 this just makes that'into a date formatfunction formatQstring(strQstring) ddLength = Len(strQstring) tempYear = Right(strQstring,4) tempDay = Right(strQstring,6) tempDay = Left(tempday,2) tempMonth = Left(strQstring,ddLength - 6) strQstring = tempMonth & "/" & tempDay & "/" & tempYear formatQstring = formatdatetime(strQstring,2)end function'Find the numeric value of the first day in the month (Monday = 2.
write cookies
When a page is loaded, the browser uses a piece of memory to store the pages information.
Create a NT Share
Create a share in a windows environment without using DOS commands.