sql server, flash and c# or vb

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have created a join member aspx file that will save input username and
password. The password is attached to a salt string and then encripted.
I am able to verify the password in an aspx file.

Now, I want to be able to use flash action script to allow user to enter the
login name and password and then pass onto an aspx file in a user control
which will then authenticate the user and password. If authenticated,will do
A, if not authenticated, will branch to b page.

I know there is a sample page on the dotnetjunkies site but that use visual
studio 2003 and I do not want to use visual studio 2003 at this time.

Anyone, please help

Raymodn Cheung
 
Whether you use VS or not is inconsequential, as you can compile assemblies
with a command line tool (either vbc.exe or csc.exe). The .NET Framework SDK
has a help file that has information on command line compiling.

VS saves you time, as the IDE helps you code faster. But, it is not
necessary. Look at the code in the article and you should be able to repeat
what they are doing.


---

Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

***************************
Think Outside the Box!
***************************
 
Back
Top