This tutorial will demonstrate the process of setting up a database connection in Macromedia Dreamweaver MX 2004.
Drop-down list of countries
A complete list of countries, alphabetically ordered, with the most popular selections at the top, ready to be used in any HTML page.
Rotation in Flash
This tutorial aims to teach you one of the basic underpinnings of Flash rotation in both ActionScript and tweened Flash.
Understanding C++ data types II
Part II of the small book that teaches you the C++ data types. Even if you have an IQ under 25 you will can understand and use the data types. In this part you will see an important aspect of data types… signed and unsigned.
A potentially dangerous Request.Form value was detected from the client
If you are receiving the A potentially dangerous Request.Form value was detected from the client error while a PostBack occurs (submitting a form, for instance) it is most likely because in the PostBack content, there are HTML or HTML-like tags. This is ASP.NET’s defense mechanism that prevents the users of a website to try and […]
Minesweeper Game In Java
A fully functional Minesweeper game in Java that is similar to the one bundled with Windows, and that can be easily enhanced.
Get the path of the ASP.NET web application that is currently running
You can easily retrieve the path to the running ASP.NET application, using Request.PhysicalApplicationPath: If the web application is located in C:\Inetpub\wwwroot\WebApplication1, the string AppPath will contain C:\Inetpub\wwwroot\WebApplication1
How to remove white (blank) space from a string
Using the Replace() method you can easily replace the white space from a string with any character you want, or totally remove it. In the following example the white space from the string is removed: This will result in Anthem containing the string StarSpangledBanner.However you can replace the spaces with any character you want, such […]
Getting started using Silverlight
This is the first Silverlight tutorial on Geekpedia, and we’re going to take a look at how to build our first Silverlight application, starting with the components that you need to reviewing the actual code.
Get Velocity And Position Of A Projectile
Use Java, physics and simple math to calculate the position of a projectile at a given time and its velocity.