Results for "Category: Internet/ Browsers/ HTML"
This is an almost complete clone of Internet Explorer 6. There are still a few things that need to be completed and a few bugs that need to be worked out but, all-in-all it is still pretty close to complete. There are also 3 prerequisites you must meet prior to building the solution for this project. Three 3rd party controls must be registered on your system. They are as follows: SharpZipLib zip library Outlook Redemption (current version is 4.2) Sky Software's Shell Megapack ActiveX controls Version 8.0 - must be the ActiveX and NOT the .NET version. SharpZipLib is free. Outlook Redemption has a free developer version and Shell Megapack is available as a demo. You MUST have these prior to building the solution or you will see lots of error when trying to build. Anyway, like I stated above, the project is near complete. A few things are still left to be done and a couple of other things probably need to be implemented differently than they currently are. I'm fully aware of the bugs in the project but, I'm sure there is a work around for them. IMPORTANT NOTE: READ THE DEVELOPER NOTES IN THE CODE BEHIND FOR THE MAIN FORM! If you don't read them you will, at one point or another, be scratching your head thinking "WTF is going on here!" *Edit: When I first posted this project I had forgotten to include a couple of very important classes. Therefore, I have created a dll from them and posted it, as a zip file, at the following link. You will need this dll to be able to build/compile the project. http://files.filefront.com/Mhtzip/;6513672;;/fileinfo.html I'm sorry if this causes you any troubles.
File indexer - useful for servers with Indexes turned off. I haven't seen anything similar and working in every aspect. Based on this one: http://www.planet-source-code.com/vb/scripts/ShowCode.asp?txtCodeId=1440&lngWid=8 . Looks like Apache 1.3 index except no newline at top and different picture for "Parrent directory" entry. With sorting and escaping characters in links. Does not show hidden files (with dot as the 1st character). Hope it will be useful for somebody.
example of Fisheye dock menu
Learn how to create a simple and secure Tcp Client - Server Component.
If you download this project, you MUST view the readme.txt file. All information can be found in there.
Tired of logging in all the time? Here is a simple solution to making an annonmyous login on a forum, message/bulletin board. I created an annoymous profile and display it first, so that the users can post "on the go" or just without the hastle of another profile. This is in reference to Chris Andersen's submission "simple message board". I just thought the feature would be attractive.
SAT Online Entertainer is a Online Player. Through this player the user can play a vast number of Online TV channels as well as Online Radio Channels. The coding is very simple.
An application to check current Internet usage
Login system that register user . save his data to a database table then email to user for success registraton and to owner 4 new member registration. user can login .. and signout .. during his login user can also view the web site that admin include. for more info, feedback, comments ,and Questions? faizmuhammadkhan@yahoo.com www.risepk.com .
Its a simple Internet Explorer like web browser.
Photo gallery is an interactive plug-in which enables the users to create their own virtual gallery in no time.
The response.redirect method is great for moving a user from one page to another. However, it does have one major limitation--you can only use it if absolutely nothing has been written to the page. Sometimes, you actually do want to write something to the page and then redirect it, for example when displaying the status of an operation. In this case, the following JavaRedirect function comes in handy. It requires a Java compatible browser. (Note:this script has been changed to incorporate Lewis Moten's helpful suggestions).
Returns relative URL of current page. Example: /vb/test.asp. See http://www.planet-source-code.com/vb/scripts/ShowCode.asp?lngWId=4&txtCodeId=5 to get the fully qualified URL string.
Want to send SMTP email from your ASP app? CDONTS is a free e-mail component that comes with IIS4, that (despite its weird name) is very easy to use and has good performance. The setup actually takes longer than the trivial scripting. To set it up, first, make sure you have installed the SMTP service. It is installed with IIS by default, but if you've messed with your settings, you may ahve to reinstall it. Check that the SMTP service shows up in the services part of the control panel and that the file CDONTS.DLL shows up in your System32 directory. Then using the following code. Don't forget to substitute the email address you want to send to for someaddress@someplace.com, which appears twice in the code).
When you work with cookies, you always run into paranoid types who disable their cookies. If you don't detect and deal with them, your code may not work. This code detects the user's cookie settings using the ASP Session object. Unlike some other implementations, it requires only one script page.
This is a great tip that is NOT documented in the Interdev help..how to get the referring URL of the browser. You can use this to track what traffic you are getting and from where.
If you do ASP.NET web forms, have you noticed that they seem to act buggy after the user hits the back button? For example, do events start firing off that shouldn't be, or does the state on the form get reset to what the user typed in 2 times ago, or worse? It's not a bug...and here's how to fix it.
Sending email in ASP.NET is a breeze! Check out this example. Note that docs say that the .SMTPServer property is optional...if you don't specify one, Windows queues up your email for you. However, I haven't tested out this method of sending mail.
When working on a website that was supposed to use the new ASP.NET file upload object (great feature by the way) to upload files and then copy them to a network file server, I discovered that ASP.NET does not honor the security account that you setup in IIS by default! You have to override it to get it to do so. This article explains how and will hopefully save you some time and aggravation of your own.
One of the bad things about old/classic ASP is its lack of easy built-in support for something as easy as sending an email. Most developers (including myself) ended up having to purchase a seperate email component such as ASPQMail, or SA-Mail. Well, now with ASP.NET that is no longer necessary...it's included in the box and is REALLY simple. Here's how to use it.