I have been searching all over the internet for something like a video
on how to create a Flex Login page and Registration page.  So I
appreciate if someone could point me in the right direction on how to
do this type of project.  I will be using it with ASP.NET and I will
be setting up a database with SQL Server 2008.  

This is the code/page I have so far:

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml";
layout="absolute" color="#060707">
        <mx:Label x="187" y="238" text="UserName:"/>
        <mx:Label x="187" y="283" text="Password:"/>
        <mx:Label x="187" y="179" text="Enter Your Username And Password"
fontWeight="bold" fontSize="14"/>
        <mx:TextInput x="262" y="236" id="username"/>
        <mx:TextInput x="262" y="281" id="password"/>
        <mx:Button id="submit"
                x="262" y="328"
            label="submit" /> 
        <mx:Label x="187" y="376" text="You must register first before you
enter website."/>
        <mx:Image x="187" y="20" width="150" height="113" autoLoad="true"
scaleContent="true">
                <mx:source>images/DjRuthless.jpg</mx:source>
        </mx:Image>
        <mx:Label x="350" y="65" text="Doc's Old School Jams"
fontWeight="bold" fontSize="26" fontFamily="Georgia" color="#000000"/>
        
</mx:Application>

Reply via email to