Advertisement

Results for "Category: Internet/ Browsers/ HTML"

4_2005-2006 #171366
IE2

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.

4_2005-2006 #171400
Apache Style Directory Listing

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.

4_2005-2006 #171423
Fisheye dock menu

example of Fisheye dock menu

4_2005-2006 #171531
Create a Tcp Client - Server Component

Learn how to create a simple and secure Tcp Client - Server Component.

4_2005-2006 #171588
IPChat - An example of implementing asynchronous sockets in vb.net 2005 for a simple chat program

If you download this project, you MUST view the readme.txt file. All information can be found in there.

4_2005-2006 #171675
Anonymous Message Post

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.

4_2005-2006 #171801
SAT Online Entertainer v 1.0

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.

4_2005-2006 #172032
Internet usage computation program

An application to check current Internet usage

4_2005-2006 #172050
Constructive login system

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 .

4_2005-2006 #172143
A simple web browser like Internet Explorer

Its a simple Internet Explorer like web browser.

4_2005-2006 #172146
Apptha Joomla Mac Doc Gallery Effet

Photo gallery is an interactive plug-in which enables the users to create their own virtual gallery in no time.

5_2007-2008 #172189
A better response.redirect

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).

5_2007-2008 #172190
Get relative URL of current page: mstrGetURL

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.

5_2007-2008 #172191
How to send email from ASP (Part I of II)

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).

5_2007-2008 #172196
Detect if cookies are enabled

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.

5_2007-2008 #172199
Getting the URL the user came from before your web 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.

5_2007-2008 #172204
Fix for ASP .NET Web Forms acting 'buggy' after user presses 'back' button

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.

5_2007-2008 #172205
How to send an email in ASP.net

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.

5_2007-2008 #172206
ASP.NET does NOT honor IIS security accounts by default!

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.

5_2007-2008 #172207
SMTP email

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.

Languages
Top Categories
Global Discovery