Ask a Question related to ASP Database, Design and Development.
-
chris #1
simple question but want help.....
Hi, I got a ASP problem wanna ask....
Sql_check = "select * from user_table where user_id =' " & user & " ' "
Set Rs_check = Conn.Execute(Sql_check)
In the user_table , there is an attribute called password, I wanna display
the password of the specified user name, what should I do?? Is that there is
something like Rs_check.password?? Please help
THANKS alot....
chris Guest
-
Need Simple Answer to Simple Contribute/Firefox question
Hello all; I've tried the Adobe help in CS3, tech support, phone support, this forum, other forums, Mozilla, and nowhere can I get a straight... -
simple question
Hi there, As an absolute beginner I have a simple question. I have a scene with two layers. Layer 1 should start again at frame 1 while Layer 2... -
SImple question?
Can anyone please tell me how to keep 2 windows open so that as soon as I click on one of them, the other one does not minimise and have to be... -
another simple question.
select from db where id = 3... if it doesn't exist, how can i display a message saying so. for example: "3" is not a valid selection. ... -
A simple question but ..
Hi Can someone give me a link where i can see (and do it my self) how to create a shape tweening? (Flash MX) Yes i am a newbie but want to learn... -
Ray at #2
Re: simple question but want help.....
Simple questions are fine. :]
<%
Sql_check = "SELECT [Password] FROM user_table WHERE user_id='" & user & "'"
''Did you want spaces before and after the '?
Set Rs_check = Conn.Execute(Sql_check)
If Not Rs_check.EOF THen
Response.Write "The password is " & Rs_check.Fields.Item(0).Value
Else
Response.write "That user wasn't found."
End If
Rs_check.Close : Set Rs_check = Nothing
Conn.Close : Set Conn = Nothing
%>
Also, please read these:
[url]http://www.aspfaq.com/show.asp?id=2096[/url]
[url]http://www.aspfaq.com/show.asp?id=2080[/url]
Ray at work
"chris" <router88@sinaman.com> wrote in message
news:bra0hh$lkd81@imsp212.netvigator.com...is> Hi, I got a ASP problem wanna ask....
>
> Sql_check = "select * from user_table where user_id =' " & user & " ' "
> Set Rs_check = Conn.Execute(Sql_check)
>
> In the user_table , there is an attribute called password, I wanna display
> the password of the specified user name, what should I do?? Is that there> something like Rs_check.password?? Please help
>
>
> THANKS alot....
>
>
Ray at Guest
-
chris #3
Re: simple question but want help.....
Thanks alot! It's too good for me already!
^_^ cheers~
"Ray at <%=sLocation%>" <myfirstname at lane34 dot com> ¼¶¼g©ó¶l¥ó·s»D
:#VU3wl$vDHA.1272@TK2MSFTNGP12.phx.gbl..."'"> Simple questions are fine. :]
> <%
> Sql_check = "SELECT [Password] FROM user_table WHERE user_id='" & user &display> ''Did you want spaces before and after the '?
> Set Rs_check = Conn.Execute(Sql_check)
> If Not Rs_check.EOF THen
> Response.Write "The password is " & Rs_check.Fields.Item(0).Value
> Else
> Response.write "That user wasn't found."
> End If
>
> Rs_check.Close : Set Rs_check = Nothing
> Conn.Close : Set Conn = Nothing
> %>
>
>
> Also, please read these:
>
> [url]http://www.aspfaq.com/show.asp?id=2096[/url]
> [url]http://www.aspfaq.com/show.asp?id=2080[/url]
>
> Ray at work
>
>
> "chris" <router88@sinaman.com> wrote in message
> news:bra0hh$lkd81@imsp212.netvigator.com...> > Hi, I got a ASP problem wanna ask....
> >
> > Sql_check = "select * from user_table where user_id =' " & user & " ' "
> > Set Rs_check = Conn.Execute(Sql_check)
> >
> > In the user_table , there is an attribute called password, I wannathere> > the password of the specified user name, what should I do?? Is that> is>> > something like Rs_check.password?? Please help
> >
> >
> > THANKS alot....
> >
> >
>
chris Guest



Reply With Quote

