Click here to Skip to main content
15,914,165 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: weird javascript issues [modified] Pin
compninja259-Nov-09 6:19
compninja259-Nov-09 6:19 
Question[Message Deleted] Pin
bahar.ghara4-Nov-09 22:21
bahar.ghara4-Nov-09 22:21 
AnswerRe: file uploade Pin
Not Active5-Nov-09 1:13
mentorNot Active5-Nov-09 1:13 
AnswerRe: file uploade Pin
Shameel5-Nov-09 2:47
professionalShameel5-Nov-09 2:47 
QuestionSynchronization Calendar API Pin
Pradeep kumar.V4-Nov-09 17:26
Pradeep kumar.V4-Nov-09 17:26 
QuestionASP.NET GridView Add Rows From JS and Reflect to Srerver-Side. Pin
BhavinBhatt4-Nov-09 16:17
BhavinBhatt4-Nov-09 16:17 
AnswerRe: ASP.NET GridView Add Rows From JS and Reflect to Srerver-Side. Pin
Not Active4-Nov-09 16:40
mentorNot Active4-Nov-09 16:40 
QuestionNice And Complex With DIVS........ HELP Pin
SRJ924-Nov-09 14:57
SRJ924-Nov-09 14:57 
AnswerRe: Nice And Complex With DIVS........ HELP Pin
Not Active4-Nov-09 16:36
mentorNot Active4-Nov-09 16:36 
GeneralRe: Nice And Complex With DIVS........ HELP Pin
SRJ925-Nov-09 0:12
SRJ925-Nov-09 0:12 
AnswerRe: Nice And Complex With DIVS........ HELP Pin
enhzflep5-Nov-09 0:26
enhzflep5-Nov-09 0:26 
GeneralRe: Nice And Complex With DIVS........ HELP Pin
SRJ925-Nov-09 0:28
SRJ925-Nov-09 0:28 
GeneralRe: Nice And Complex With DIVS........ HELP Pin
Not Active5-Nov-09 1:12
mentorNot Active5-Nov-09 1:12 
GeneralRe: Nice And Complex With DIVS........ HELP Pin
SRJ925-Nov-09 9:48
SRJ925-Nov-09 9:48 
QuestionHow to create Dialogs and notifications? Pin
Alivemau54-Nov-09 12:23
Alivemau54-Nov-09 12:23 
AnswerRe: How to create Dialogs and notifications? Pin
Oakman4-Nov-09 13:03
Oakman4-Nov-09 13:03 
GeneralRe: How to create Dialogs and notifications? Pin
Alivemau54-Nov-09 13:48
Alivemau54-Nov-09 13:48 
GeneralRe: How to create Dialogs and notifications? Pin
Oakman4-Nov-09 15:54
Oakman4-Nov-09 15:54 
AnswerRe: How to create Dialogs and notifications? Pin
David Skelly4-Nov-09 22:29
David Skelly4-Nov-09 22:29 
QuestionA Tale of Three Browsers Pin
Oakman4-Nov-09 3:09
Oakman4-Nov-09 3:09 
AnswerRe: A Tale of Three Browsers Pin
Abhishek Sur4-Nov-09 9:01
professionalAbhishek Sur4-Nov-09 9:01 
QuestionProblem with Multiple Popup Control Extenders in Single Modal Popup. Pin
VikashGohil4-Nov-09 2:05
VikashGohil4-Nov-09 2:05 
AnswerRe: Problem with Multiple Popup Control Extenders in Single Modal Popup. Pin
kKamel4-Nov-09 2:44
kKamel4-Nov-09 2:44 
QuestionASP(match values of two table ) Pin
rajiv_kadam4-Nov-09 0:09
rajiv_kadam4-Nov-09 0:09 
i m displaying projectdescription whose id is retreived frm previous filename.i have two tables in my database.
i m checking if both the id is matched then it should show me the
description otherwise not and should display some message.
if id is matched then it works fine.
but if id is not matched of both the table with one another then
it gives error '80020009'



here is my code
<%

opendatabase conn
id=request("id")
session("id")=id
sql="select * from projectdescription where id="& id
set obj=server.createobject("adodb.recordset")
obj.open sql,conn,1,1

sql3="select * from schemedescription where projectid="& id
set obj3=server.CreateObject("adodb.recordset")
obj3.open sql3,conn,1,1
response.Write("id is "& obj("id"))

if obj3.eof=true then
response.Write("record not found")

response.Write("View Project   ")

elseif obj3.eof=false then
response.Write("record found")

end if
if obj.eof=true then
response.Write("rec not found")
elseif obj.eof=false then
response.Write("rec found")
end if


if obj("id")=obj3("projectid") then
response.Write("View Project   ")
response.Write("View Scheme   ")
response.Write("View Team")
' else
' response.Write("id is not match")

end if




%>
QuestionAfter Session Ends Pin
kKamel3-Nov-09 23:20
kKamel3-Nov-09 23:20 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.