User Name Password Register
DaniWeb IT Discussion Community
All
What is DaniWeb IT Discussion Community?
You're currently browsing the ASP section within the Web Development category of DaniWeb, a massive community of 456,433 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 2,642 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Please support our ASP advertiser: Lunarpages ASP Web Hosting
Views: 3015 | Replies: 3
Reply
Join Date: Jul 2004
Posts: 1
Reputation: Pradhuman is an unknown quantity at this point 
Rep Power: 0
Solved Threads: 0
Pradhuman Pradhuman is offline Offline
Newbie Poster

Please check and provide solution for my code

  #1  
Jul 14th, 2004
<%@ Language=VBScript %>
<html>
<head>
<title>Furniture4all.com</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" href="links.css" type="text/css">
</head>
<body bgcolor="#800080" text="#FFFFFF" leftmargin="0" topmargin="0">
<%
function traceLine(str)
traceLine = replace(str, chr(13), "<br>")
end function

dim con, rs, id, pass, sNo
set con= server.CreateObject("ADODB.Connection")
set rs = server.CreateObject("ADODB.Recordset")
set rs1 = server.CreateObject("ADODB.Recordset")

name=session("userName")
pass=session("password")

con.Open "Provider=Microsoft.jet.OLEDB.4.0; data Source = " & server.MapPath("../FurnitureData.mdb")
rs.Open "SELECT * FROM adminUser WHERE adminName='"&name&"' AND adminPassword='"&pass&"'", con
if rs.EOF then
Response.Write "Unauthorised to access, Username or Password is incorrect"
Response.End
end if
rs.Close

id = Request.QueryString("id")

rs.Open "SELECT * FROM Feedback WHERE id="&id&"",con
Response.Write "<table width='100%'>"
if not rs.EOF then
uID= rs("FirstName")
rs1.Open "SELECT * FROM Feedback WHERE uId='"&FirstName&"'", con
str = str & "<table width=60% align=center border=1>"
str = str & "<tr bgcolor=darkblue><td colspan=2><FONT color=white style='BACKGROUND-COLOR: #00008b'><STRONG>User Information</STRONG></FONT>"
str = str & "<tr><td>FirstName<td>&nbsp;" & rs("firstname")
str = str & "<tr><td>Last Name<td>&nbsp;" & rs("LastName")
str = str & "<tr><td>Sex<td>&nbsp;" & rs("sex")
str = str & "<tr><td>Age<td>&nbsp;" & rs("age")
str = str & "<tr><td>Address<td>&nbsp;" & rs("HouseNo")
str = str & "<tr><td>&nbsp;<td>&nbsp;" & rs("Locality")
str = str & "<tr><td>City<td>&nbsp;" & rs("city")
str = str & "<tr><td>State<td>&nbsp;" & rs("state")
str = str & "<tr><td>Country<td>&nbsp;" & rs("country")
str = str & "<tr><td>Zip<td>&nbsp;" & rs("zip")
str = str & "<tr><td>Phone<td>&nbsp;" & rs("Phone")
str = str & "<tr><td>Email<td>&nbsp;" & rs("email")
str = str & "<tr><td>Query<td>&nbsp;" & traceline(rs("comment"))
Response.Write str
%><form action="replyQuery.asp" method=post id=form1 name=form1>
<tr>
<td>Answer
<td>
<input type=hidden value=<%=id%> name=id>
<textarea name=ans rows=10 cols=50><%=rs("answer")%></textArea>
<tr>
<td>&nbsp;
<td>
<input type=submit value="Submit" id=submit1 name=submit1></form>
<%
rs1.Close
end if
rs.Close
%>
<tr>
<td>&nbsp;
<td>&nbsp;
<tr>
<td>&nbsp;
<td>&nbsp;
</table>

<div align="left"></body>
</html>
AddThis Social Bookmark Button
Reply With Quote  
Join Date: Jul 2004
Posts: 32
Reputation: RobUK is an unknown quantity at this point 
Rep Power: 5
Solved Threads: 1
RobUK RobUK is offline Offline
Light Poster

Re: Please check and provide solution for my code

  #2  
Jul 14th, 2004
what exactly is wrong here?
Rob - DMOZ Editor
Web Design Forums - Free website critiques. Web design + SEO Advice
Reply With Quote  
Join Date: Apr 2004
Location: Springfield, Oregon
Posts: 121
Reputation: Drew is an unknown quantity at this point 
Rep Power: 5
Solved Threads: 6
Drew's Avatar
Drew Drew is offline Offline
Junior Poster

Re: Please check and provide solution for my code

  #3  
Jul 16th, 2004
Looks like the second SQL statement is missing a quote at the end.
Drew Gauderman
ASP / MSSQL Coder
http://www.iportalx.net - My ASP Portal
Reply With Quote  
Join Date: Feb 2004
Posts: 4
Reputation: Ral is an unknown quantity at this point 
Rep Power: 0
Solved Threads: 0
Ral Ral is offline Offline
Newbie Poster

Re: Please check and provide solution for my code

  #4  
Jul 23rd, 2004
Actually the problem is this line: rs.Open "SELECT * FROM Feedback WHERE id="&id&"",con

You can't use a variable called id since it is a reserved word in ASP. It is good practice to mark your variables to something similar like this:

If you are using a character var start it with c_variablename, bit then b_varname, integer use i_varname. That way you won't run into reserved variable names while programming.
Reply With Quote  
Reply

Only community members can participate in forum threads. You must register or log in to contribute.

DaniWeb ASP Marketplace
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)

 

Thread Tools Display Modes

Similar Threads
Other Threads in the ASP Forum

All times are GMT -4. The time now is 1:33 am.
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC