Archive for the ‘ASP’ Category

The impetus for this article came about one day when I was tasked with porting over an MTBF (Mean Time Between Failure) application that I had written many years back from dynamic ASP pages to Flash. The original ASP code talked to a Microsoft SQL database and, of course, used server-side ASP scripts to access [...]

Aviary – A Online Design Tool
Friday, February 8th, 2008

Aviary is a suite of web-based applications (RIAs) for people who create. From image editing to typography to music to 3D to video, we have a tool for artists of all genres. The stuff these guys have built is very, very cool. They took Flex and created an entire suite of tools including a 3D [...]

Project The Tech Labs
Wednesday, November 28th, 2007

Hi, We are still looking for people interested to participate in this project. We would be very interested to have someone who knows things about Flash Lite and mobile devices. Other platforms and tech are also interesting, like CSS, CMS, PHP, .NET, Photoshop, Corel and other. The point of this project, is to offer to [...]

Free Flash, Flex and Air Tutorials
Monday, July 9th, 2007

Hi, After some contacts mantained between me and other two guys, we have decided to start writing some tutorials about Flash, Flex and Air. We will be publishing the same tutorials at the 3 sites, which are Flash Enabled, Garotos de Web e Ricardo Castellano Blog. Soon i will had a new section for this [...]

Hello m8′s first of all, tnx 4 commenting this project. I’m made some changes in order to achive some of your advices. Still to do some things, like changing the subpages preloader. The “Links” sub page is ready, so if you could comment it i would appreciate very much, as it is very important to me to know what people [...]

Here is the flash code you need to use to send data to asp and then to access database. Then if Login == Password, you will be able to enter, else, wrong way… ehehe //code function sendata() { var sendVars = new LoadVars(); sendVars.login = mc_login.login.text; sendVars.senha = mc_login.senha.text; sendVars.load(“login.asp?” + sendVars.toString()); sendVars.onLoad = function [...]

Did you never want to have a login entrance to your flash site? Here it is the ASP code you need to communicate from flash to the access database. <%@LANGUAGE=”VBSCRIPT” CODEPAGE=”1252″%> <% ‘open the database—————————————————— set conn=server.createobject(“adodb.connection”) cnpath=”DBQ=” & server.mappath(“mydb.mdb”) conn.open “DRIVER={Microsoft Access Driver (*.mdb)}; ” & cnpath ‘Vars from Flash——————————— login = trim(request(“login”)) senha = trim(request(“senha”)) ‘Checks [...]