This article may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist. To maintain the flow of the article, we've left these URLs in the text, but disabled the links.
|
|
GEEK I got so excited about the new Visual Basic® WebClass technology that I incorporated my existing site's HTML files into the Microsoft® Internet Information Server (IIS) application project. Everything works great when I run it on my development computer, but when I transfer it to my Internet server I get a bunch of error messages. My ISP doesn't have Visual Studio® 6.0 installed, so I can't use the Posting Acceptor on that end. Is there an easier way to deploy WebClass apps than through PDW?
GEEK To support and deploy the WebClass technology properly, you need to get the proper support from your ISP. They need to be running Windows NT® Server, have IIS enabled, and have the proper Visual Studio server-side services installed, including Posting Acceptor 2.0. In your case, Posting Acceptor 2.0 must run on the server to allow deployment of server-side objects. You should contact your ISP and see if they are willing to add this support. Your situation is comparable to someone who wants to watch the TV show South Park but can't because their cable provider doesn't carry Comedy Central. Where I live, the cable service provider doesn't carry Comedy Central, which means if I want to watch South Park I have to switch service providers (by getting a satellite dish) or move to another area where Comedy Central is offered. There isn't any way to install Comedy Central onto the offerings provided by my cable service provider. They have to be the ones to set this up and offer me this service. (Note: geektogeek does not condone the killing of Kenny.)
GEEK How do you provide background MIDI music on a Web page so it works with all versions of Microsoft Internet Explorer and Netscape browsers? I tried using the script in Figure 1, which works in Internet Explorer (and with Netscape browsers when run from my local hard drive), but doesn't work with Netscape software when run over the Web.
|
|
Note that no version of Navigator supports the <bgsound> tag. Therefore, it is perfectly safe to simply use it; if it works, it works, and if it's ignored, it doesn't work. By placing the <bgsound> tag inside the <embed> container, <bgsound> won't be launched unless the <embed> tag fails due to a lack of embeddable apps associated with the MID extension. So if there is a properly registered player for .mid files on your system for the browser you are using, this should work in all cases. But, of course, you can simply not play the sound, and your problem will be solved!
GEEK I want to create an input box that will display the amount of time remaining in an online test. I am using the window.setTimeout function to call a procedure that will decrement the time remaining every second. I want to do this on the client's machine, but initially I need to use the server's time to calculate the countdown start point. Rather than depend on the client's time, I want to use the server's system time. How do I pass the server's current system time to client-side JScript®? <%=Time()%> doesn't work inside a <SCRIPT> tag. |
|
What might be confusing is that the output of <%= Time()%> is a string value that represents the current time and not a numerical value. Therefore, you need to convert this string value back into a valid time value if you want to use it that way.
GEEK Can you tell me what versions of the following software are Y2K-compliant: Windows® 3.1, Microsoft Visual C++® compiler, Visual Basic, and Windows NT?
|