What is a "Foreword" to a blog?
Re: Please Help Advanse Search, two parts are working, the 3rd to
Hello Guest
  
  • Login
• Register…
• Start blog
  • Who, Where, When
• What can I do?
• What to Read?
  • Polls
• Avatars
• Interests
  • Cities and Countries
• Random blog
• Users search
  • Search
• Games
• Tests
• QAIX
  • Сообщества
• Talxy Chat
• Horoscope
• Online
 
Зарегистрируйся!

QAIX > ASP web-programming > Re: Please Help Advanse Search, two parts are working, the 3rd to 31 August 2008 07:11:50

  Recent blog posts: 
  Forums:   
  Discuss: 
  Recent forum topics: 
  Recent forum comments:
  Moderators:

Re: Please Help Advanse Search, two parts are working, the 3rd to

Old Pedant 31 August 2008 07:11:50
 "Bob Barrows [MVP]" wrote:

If you had added " ... immediately after opening the recordset." I would
have had no comment.

Yah, I know. But in 8 years of writing ASP code (which I no longer do
except for a couple of pro bono non-profit org sites) I never once had a
reason to use or need a BOF test. I think the exceptions are so rare that
saying "never" is better than bothering to describe the exceptions that will
(in practice) not be encountered.

Oh...and in over 86,000 posts I made on the ASPMessageBoard site, answering
all sorts of questions, never once did anybody have any code that needed the
BOF test, either. ( http://www.aspmessa­geboard.com/scripts/­topPosters.asp )

Sometimes, even for an old pedant, it's not worth expounding the theory when
the practice is so overwhelmingly one-sided.

It's nice to meet somebody even more pedantic than I am. <grin/>

p.s.: Actually, I gave myself that name because of my penchant for
correcting English syntax, not code syntax. <grin style="monstrous" />

Add comment
iahamed via WebmasterKB.com 23 August 2008 08:17:08 permanent link ]
 Hello Bob Barrows, and Old Pedant,

I thank you so much for the response I am sorry for the late reply, and thank
you for the speedy response to help the needy. I am testing my code.

Thank you so much Old Pedant.

Old Pedant wrote:
If you had added " ... immediately after opening the recordset." I would
have had no comment.
Yah, I know. But in 8 years of writing ASP code (which I no longer do
except for a couple of pro bono non-profit org sites) I never once had a
reason to use or need a BOF test. I think the exceptions are so rare that
saying "never" is better than bothering to describe the exceptions that will
(in practice) not be encountered.
Oh...and in over 86,000 posts I made on the ASPMessageBoard site, answering
all sorts of questions, never once did anybody have any code that needed the
Sometimes, even for an old pedant, it's not worth expounding the theory when
the practice is so overwhelmingly one-sided.
It's nice to meet somebody even more pedantic than I am. <grin/>
p.s.: Actually, I gave myself that name because of my penchant for
correcting English syntax, not code syntax. <grin style="monstrous" />

--
Message posted via http://www.webmaste­rkb.com

Add comment
iahamed via WebmasterKB.com 23 August 2008 09:37:20 permanent link ]
 Hello Old Pedant,

Thank you Once again for the effort taken to Help. It seems to be a Error
that generates then I try to
test it.

My Database Table Name is "1SalaryDB"

Can u please tell me where to add the Salarycom (Drop down name) and the
Value with One example
BETWEEN 0 AND 10000 please. The error with the Below, your code is

Microsoft VBScript compilation (0x800A0401)
Expected end of statement
/GoodASPDBsearch/Se­archengineresults.as­p, line 24, column 23
SQL = SQL & " AND " & 1SalaryDB & " LIKE '%" & keyword & "%' "


Heres your Code Below.....

whatToSearch = Replace( Trim( Request("ASPDBCatSe­arch") ), "'", "''" )
keyword = Replace( Trim( Request("Keyword") ), "'", "''" )

If whatToSearch <> "All" Then
SQL = SQL & " AND " & whatToSearch & " LIKE '%" & keyword & "%' "
End If

salary = Replace( Trim( Request("SalaryCom"­) ), "'", "''" )
If salary <> "" Then
SQL = SQL & " AND salary " & salary
End If

SQL = SQL & " ORDER BY LastName, FirstName " ' or whatever order you want

--

Awaiting your reply Sir.

Thank you.

--
Message posted via WebmasterKB.com
http://www.webmaste­rkb.com/Uwe/Forums.a­spx/asp/200808/1

Add comment
iahamed via WebmasterKB.com 24 August 2008 08:46:59 permanent link ]
 salary = Replace( Trim( Request("SalaryCom"­) ), "'", "''" )
If salary <> "" Then
SQL = SQL & " AND [1SalaryDB] " & salary
End If

I am confused with the "whatToSearch", and the above "salary" in the detailed
given. However adding SQL = "SELECT * FROM Employees WHERE 1=1 " makes my
rest of the Search options codes collapse that is:

If Request.Form("ASPDB­CatSearch") = "LastName" Then
SQL = SQL & " WHERE LastName LIKE '%" & Request.Form("keywo­rd") & "%'"
End If

If Request.Form("ASPDB­CatSearch") = "Title" Then
SQL = SQL & " WHERE Title LIKE '%" & Request.Form("keywo­rd") & "%'"
End If

If Request.Form("ASPDB­CatSearch") = "Division" Then
SQL = SQL & " WHERE Division LIKE '%" & Request.Form("keywo­rd") & "%'"
End If


Thank for the Help Anyway I will find someone to Code the third part for me.

Good luck Old Pedant.

--
Message posted via WebmasterKB.com
http://www.webmaste­rkb.com/Uwe/Forums.a­spx/asp/200808/1

Add comment
Old Pedant 26 August 2008 00:59:01 permanent link ]
 
"iahamed via WebmasterKB.com" wrote:

I am confused with the "whatToSearch", and the above "salary" in the detailed
given.

Did you *TRY* the code I gave you???

I was GETTING RID of your way too complex IF... IF... IF... code.

Here is my code again, making ONLY a change for the salary field name:

<%@ LANGUAGE="VBSCRIPT"­ %>
<html>
<head>
<title>Search Engine Results!</title>
</head>

<body>
<%

Dim SQL

Set aspdbweb = Server.CreateObject­("ADODB.Connection")­
aspdbweb = "Provider=Microsoft­.Jet.OLEDB.4.0; " _
& Data Source=" & Server.MapPath("emp­loyees.mdb") & ";"

' WHERE 1=1 is sneaky trick so we can use AND for other conditions
SQL = "SELECT * FROM Employees WHERE 1=1 "

' whatToSearch is the name of the field the user asked to search on
' instead of using IF on that name, we just pick it up from the
' request and then use it to build the query:
whatToSearch = Replace( Trim( Request("ASPDBCatSe­arch") ), "'", "''" )
keyword = Replace( Trim( Request("Keyword") ), "'", "''" )

' so if the user is *NOT* searching ALL, then we
' search the field he asked for looking for keyword given:
If whatToSearch <> "All" Then
SQL = SQL & " AND " & whatToSearch & " LIKE '%" & keyword & "%' "
End If

' then salary is tricky, because the actual SQL where
' condition is the VALUE= of each <OPTION>.
salary = Replace( Trim( Request("SalaryCom"­) ), "'", "''" )
' so if any salary choice was made, we use it here:
If salary <> "" Then
SQL = SQL & " AND [1SalaryDB] " & salary
End If

' if you don't use an ORDER BY, results will be
' in some random order. Don't HAVE to use
' ORDER BY, but why not??
SQL = SQL & " ORDER BY LastName, FirstName " ' or whatever order you want

' don't use a static cursor when you don't need it...simpler & faster:
Set rsglobal = aspdbweb.Execute( SQL )
If rsglobal.EOF Then
%>
<h2 align="center">We did not find a match!</h2>
<%
Else
%>
<h2>Here are the results of your search:</h2>

... rest same ...

Add comment
Old Pedant 26 August 2008 00:59:01 permanent link ]
 
"iahamed via WebmasterKB.com" wrote:

I am confused with the "whatToSearch", and the above "salary" in the detailed
given.

Did you *TRY* the code I gave you???

I was GETTING RID of your way too complex IF... IF... IF... code.

Here is my code again, making ONLY a change for the salary field name:

<%@ LANGUAGE="VBSCRIPT"­ %>
<html>
<head>
<title>Search Engine Results!</title>
</head>

<body>
<%

Dim SQL

Set aspdbweb = Server.CreateObject­("ADODB.Connection")­
aspdbweb = "Provider=Microsoft­.Jet.OLEDB.4.0; " _
& Data Source=" & Server.MapPath("emp­loyees.mdb") & ";"

' WHERE 1=1 is sneaky trick so we can use AND for other conditions
SQL = "SELECT * FROM Employees WHERE 1=1 "

' whatToSearch is the name of the field the user asked to search on
' instead of using IF on that name, we just pick it up from the
' request and then use it to build the query:
whatToSearch = Replace( Trim( Request("ASPDBCatSe­arch") ), "'", "''" )
keyword = Replace( Trim( Request("Keyword") ), "'", "''" )

' so if the user is *NOT* searching ALL, then we
' search the field he asked for looking for keyword given:
If whatToSearch <> "All" Then
SQL = SQL & " AND " & whatToSearch & " LIKE '%" & keyword & "%' "
End If

' then salary is tricky, because the actual SQL where
' condition is the VALUE= of each <OPTION>.
salary = Replace( Trim( Request("SalaryCom"­) ), "'", "''" )
' so if any salary choice was made, we use it here:
If salary <> "" Then
SQL = SQL & " AND [1SalaryDB] " & salary
End If

' if you don't use an ORDER BY, results will be
' in some random order. Don't HAVE to use
' ORDER BY, but why not??
SQL = SQL & " ORDER BY LastName, FirstName " ' or whatever order you want

' don't use a static cursor when you don't need it...simpler & faster:
Set rsglobal = aspdbweb.Execute( SQL )
If rsglobal.EOF Then
%>
<h2 align="center">We did not find a match!</h2>
<%
Else
%>
<h2>Here are the results of your search:</h2>

... rest same ...

Add comment
iahamed via WebmasterKB.com 26 August 2008 06:50:45 permanent link ]
 <%@ LANGUAGE="VBSCRIPT"­ %>
<html>
<head>
<title>Search Engine Results!</title>
</head>

<body>
<%

Dim SQL

Set aspdbweb = Server.CreateObject­("ADODB.Connection")­
aspdbweb = "Provider=Microsoft­.Jet.OLEDB.4.0; Data Source=" & Server.MapPath
("employees.mdb") & ";"

'My Old SQL = "SELECT * FROM Employees"
'WHERE 1=1 is sneaky trick so we can use AND for other conditions
SQL = "SELECT * FROM Employees WHERE 1=1"

' the REPLACE calls are to protect against SQL injection
whatToSearch = Replace( Trim( Request("ASPDBCatSe­arch") ), "'", "''" )
keyword = Replace( Trim( Request("Keyword") ), "'", "''" )

If whatToSearch <> "All" Then
SQL = SQL & " AND " & whatToSearch & " LIKE '%" & keyword & "%' "
End If

salary = Replace( Trim( Request("SalaryCom"­) ), "'", "''" )

If salary <> "" Then
SQL = SQL & " AND [1SalaryDB] " & salary
End If

SQL = SQL & " ORDER BY FirstName, LastName, 1SalaryDB, Title, Division, Phone,
Email " ' or whatever order you want

'----

Set rsglobal = aspdbweb.Execute( SQL )
If rsglobal.EOF Then

'Set rsglobal = Server.CreateObject­("ADODB.Recordset")
'rsglobal.Open SQL, aspdbweb, 3
%>
<%
'If rsglobal.BOF and rsglobal.EOF Then
%>
<h2 align="center">We did not find a match!</h2>
<%
Else
%>
<%If Not rsglobal.BOF Then%>

... rest same ...

Sir thank you so so much for the generosity in posting again and replying, I
did the changes as you said, I do not know whether the Search will do a Value
search cause its producing a error I cannot see the message.

Error Type:
Microsoft VBScript runtime (0x800A01A8)
Object required: 'aspdbweb'
/GoodASPDBsearch/Se­archengineresults.as­p, line 37

Line no 37 is: Set rsglobal = aspdbweb.Execute( SQL )

However my requirement is to search all values "ASPDBCatSearch" (Drop down
with its values to be searched), "Salarycom" (Drop down with its values to
be searched), and the Input txt box named "keyword". Thats why Sir I used a
If. I didnt know to connect to the 3rd Logic.

Please be kind enough to Response when you are free Sir.

Thank you so much for the Help and time taken to go through my troubling you
Code.

Thank you.

--
Message posted via WebmasterKB.com
http://www.webmaste­rkb.com/Uwe/Forums.a­spx/asp/200808/1

Add comment
iahamed via WebmasterKB.com 26 August 2008 06:53:06 permanent link ]
 Oooops My post went some where else,

<%@ LANGUAGE="VBSCRIPT"­ %>
<html>
<head>
<title>Search Engine Results!</title>
</head>

<body>
<%

Dim SQL

Set aspdbweb = Server.CreateObject­("ADODB.Connection")­
aspdbweb = "Provider=Microsoft­.Jet.OLEDB.4.0; Data Source=" & Server.MapPath
("employees.mdb") & ";"

'My Old SQL = "SELECT * FROM Employees"
'WHERE 1=1 is sneaky trick so we can use AND for other conditions
SQL = "SELECT * FROM Employees WHERE 1=1"

' the REPLACE calls are to protect against SQL injection
whatToSearch = Replace( Trim( Request("ASPDBCatSe­arch") ), "'", "''" )
keyword = Replace( Trim( Request("Keyword") ), "'", "''" )

If whatToSearch <> "All" Then
SQL = SQL & " AND " & whatToSearch & " LIKE '%" & keyword & "%' "
End If

salary = Replace( Trim( Request("SalaryCom"­) ), "'", "''" )

If salary <> "" Then
SQL = SQL & " AND [1SalaryDB] " & salary
End If

SQL = SQL & " ORDER BY FirstName, LastName, 1SalaryDB, Title, Division, Phone,

Email " ' or whatever order you want

'----

Set rsglobal = aspdbweb.Execute( SQL )
If rsglobal.EOF Then

'Set rsglobal = Server.CreateObject­("ADODB.Recordset")
'rsglobal.Open SQL, aspdbweb, 3
%>
<%
'If rsglobal.BOF and rsglobal.EOF Then
%>
<h2 align="center">We did not find a match!</h2>
<%
Else
%>
<%If Not rsglobal.BOF Then%>

... rest same ...

Sir thank you so so much for the generosity in posting again and replying, I
did the changes as you said, I do not know whether the Search will do a Value
search cause its producing a error I cannot see the message.

Error Type:
Microsoft VBScript runtime (0x800A01A8)
Object required: 'aspdbweb'
/GoodASPDBsearch/Se­archengineresults.as­p, line 37

Line no 37 is: Set rsglobal = aspdbweb.Execute( SQL )

However my requirement is to search all values "ASPDBCatSearch" (Drop down
with its values to be searched), "Salarycom" (Drop down with its values to
be searched), and the Input txt box named "keyword". Thats why Sir I used a
If. I didnt know to connect to the 3rd Logic.

Please be kind enough to Response when you are free Sir.

Thank you so much for the Help and time taken to go through my troubling you
Code.

Thank you.

--
Message posted via http://www.webmaste­rkb.com

Add comment
iahamed via WebmasterKB.com 27 August 2008 07:02:29 permanent link ]
 Error Type:
Microsoft VBScript runtime (0x800A01A8)
Object required: ''
/GoodASPDBsearch/Se­archengineresults.as­p, line 13

Thats the error I get Sir, and I did try with other various connection
methods its just asking the line no 13.

aspdbweb.OPEN "Provider=Microsoft­.Jet.OLEDB.4.0; " & "Data Source=" & Server.
MapPath("employees.­mdb") & ";"


Other connection methods I tried:
'aspdbweb.Open "Provider=Microsoft­.Jet.OLEDB.4.0; Data Source=" & "" &
Request.ServerVaria­bles("APPL_PHYSICAL_­PATH") & "employees.mdb"

Thank you.

Rgds.


Old Pedant wrote:
Set aspdbweb = Server.CreateObject­("ADODB.Connection")­
aspdbweb = "Provider=Microsoft­.Jet.OLEDB.4.0; Data Source=" & Server.MapPath
[quoted text clipped - 6 lines]
Line no 37 is: Set rsglobal = aspdbweb.Execute( SQL )
************
Sorry! Minor typo on my part.
The problem is actually on this line:
aspdbweb = "Provider=Microsoft­.Jet.OLEDB.4.0; Data Source=" &
Server.MapPath ("employees.mdb") & ";"
That SHOULD be
aspdbweb.OPEN "Provider=Microsoft­.Jet.OLEDB.4.0; " _
& "Data Source=" & Server.MapPath("emp­loyees.mdb") & ";"
I don't know how/why I put an equals sign there instead of the call to .OPEN
See, though, it DOES help to tell us what errors you get! This one was an
easy fix to find, once I saw the error message and you told me what line had
the error! Good posting.

--
Message posted via WebmasterKB.com
http://www.webmaste­rkb.com/Uwe/Forums.a­spx/asp/200808/1

Add comment
Old Pedant 28 August 2008 02:17:16 permanent link ]
 

"iahamed via WebmasterKB.com" wrote:

Error Type:
Microsoft VBScript runtime (0x800A01A8)
Object required: ''
/GoodASPDBsearch/Se­archengineresults.as­p, line 13
Thats the error I get Sir, and I did try with other various connection
methods its just asking the line no 13.
aspdbweb.OPEN "Provider=Microsoft­.Jet.OLEDB.4.0; " & "Data Source=" & Server.
MapPath("employees.­mdb") & ";"

I can't see how the actual connection string used would have any impact on
that particular error message.

When it complains about "object required" inevitably that means that you are
using an expression of the form
objectName.methodOr­PropertyName
and the "objectName" is not really an object.

If you have those two lines in a row *EXACTLY* as

Set aspdbweb = Server.CreateObject­("ADODB.Connection")­
aspdbweb.Open "Provider=Microsoft­.Jet.OLEDB.4.0; " _
& "Data Source=" & Server.MapPath("emp­loyees.mdb") & ";"

Then I honestly have no idea what the cause of that error is.

If you want to, post the full code (at least, say, the first 50 lines?)
here. Again.



Add comment
iahamed via WebmasterKB.com 28 August 2008 06:37:39 permanent link ]
 Thank you Once again Old Pedant so much. Thats my Complete Code in ASP I am
sorry for the Inconvenience I am causing you and appreciate your help.

ASP Code as requested to paste:
-------------------­--------------------­---------------
<%

Dim SQL

'aspdbweb.Open "Provider=Microsoft­.Jet.OLEDB.4.0; Data Source=" & "" &
Request.ServerVaria­bles("APPL_PHYSICAL_­PATH") & "employees.mdb"
aspdbweb.OPEN "Provider=Microsoft­.Jet.OLEDB.4.0; " & "Data Source=" & Server.
MapPath("employees.­mdb") & ";"

'Set aspdbweb = Server.CreateObject­("ADODB.Connection")­
'aspdbweb = "Provider=Microsoft­.Jet.OLEDB.4.0; Data Source=" & Server.MapPath
("employees.mdb") & ";"

'My Old SQL = "SELECT * FROM Employees"
'WHERE 1=1 is sneaky trick so we can use AND for other conditions
SQL = "SELECT * FROM Employees WHERE 1=1"

' the REPLACE calls are to protect against SQL injection
whatToSearch = Replace( Trim( Request("ASPDBCatSe­arch") ), "'", "''" )
keyword = Replace( Trim( Request("Keyword") ), "'", "''" )

If whatToSearch <> "All" Then
SQL = SQL & " AND " & whatToSearch & " LIKE '%" & keyword & "%' "
End If

salary = Replace( Trim( Request("SalaryCom"­) ), "'", "''" )

If salary <> "" Then
SQL = SQL & " AND [1SalaryDB] " & salary
End If

SQL = SQL & " ORDER BY FirstName, LastName, 1SalaryDB, Title, Division, Phone,
Email " ' or whatever order you want

'----

Set rsglobal = aspdbweb.Execute( SQL )
If rsglobal.EOF Then

'Set rsglobal = Server.CreateObject­("ADODB.Recordset")
'rsglobal.Open SQL, aspdbweb, 3
%>
<%
'If rsglobal.BOF and rsglobal.EOF Then
%>
<h2 align="center">We did not find a match!</h2>
<%
Else
%>
<%If Not rsglobal.BOF Then%>

<h2>Here are the results of your search:</h2>

<table BORDER="0" width="100%" cellpadding="3">
<tr>
<th bgcolor="#FF870F"><­span style="font-weight:­ 400">
<font face="Arial" color="#FFFFFF" size="1">First name </font></span></th>­
<th bgcolor="#FF870F"><­span style="font-weight:­ 400">
<font face="Arial" color="#FFFFFF" size="1">Last Name </font></span></th>­
<th bgcolor="#FF870F"><­span style="font-weight:­ 400">
<font face="Arial" color="#FFFFFF" size="1">Salary </font></span></th>­
<th bgcolor="#FF870F"><­span style="font-weight:­ 400">
<font face="Arial" color="#FFFFFF" size="1">Title </font></span></th>­
<th bgcolor="#FF870F"><­span style="font-weight:­ 400">
<font face="Arial" color="#FFFFFF" size="1">Division </font></span></th>­
<th bgcolor="#FF870F"><­span style="font-weight:­ 400">
<font face="Arial" color="#FFFFFF" size="1">Phone </font></span></th>­
<th bgcolor="#FF870F"><­span style="font-weight:­ 400">
<font face="Arial" color="#FFFFFF" size="1">E-Mail </font></span></th>­
</tr>
<%
Do While Not rsglobal.EOF
%>
<tr>
<td><%=rsglobal("Fi­rstName")%></td>
<td><%=rsglobal("La­stName")%></td>
<td><%=rsglobal("1S­alaryDB")%></td>
<td><%=rsglobal("Ti­tle")%></td>
<td><%=rsglobal("Di­vision")%></td>
<td><%=rsglobal("Ph­one")%></td>
<td><a href="mailto:<%=rsg­lobal("Email")%>"><%­=rsglobal("Email")%
</a></td>
</tr>
<% rsglobal.MoveNext
Loop
%>
</table>
<%End If%>
<%End If%>
<%
rsglobal.Close
%>
</body>
</html>

-------------------­--------------------­-
Thank you.

--
Message posted via http://www.webmaste­rkb.com

Add comment
Old Pedant 28 August 2008 23:35:02 permanent link ]
 

"iahamed via WebmasterKB.com" wrote:

ASP Code as requested to paste:
-------------------­--------------------­---------------
<%
Dim SQL
'aspdbweb.Open "Provider=Microsoft­.Jet.OLEDB.4.0; Data Source=" & "" &
Request.ServerVaria­bles("APPL_PHYSICAL_­PATH") & "employees.mdb"
aspdbweb.OPEN "Provider=Microsoft­.Jet.OLEDB.4.0; " & "Data Source=" & Server.
MapPath("employees.­mdb") & ";"
'Set aspdbweb = Server.CreateObject­("ADODB.Connection")­
'aspdbweb = "Provider=Microsoft­.Jet.OLEDB.4.0; Data Source=" & Server.MapPath
("employees.mdb") & ";"
'My Old SQL = "SELECT * FROM Employees"
'WHERE 1=1 is sneaky trick so we can use AND for other conditions
SQL = "SELECT * FROM Employees WHERE 1=1"
' the REPLACE calls are to protect against SQL injection
whatToSearch = Replace( Trim( Request("ASPDBCatSe­arch") ), "'", "''" )
keyword = Replace( Trim( Request("Keyword") ), "'", "''" )
.. et cetera ...

If you would GET RID of all the commented-out lines, you would easily see
your problem. And, indeed, it is EXACTLY what I said it was. Thus:

<%
Dim SQL
aspdbweb.OPEN "Provider=Microsoft­.Jet.OLEDB.4.0; " & "Data Source=" &
Server.MapPath("emp­loyees.mdb") & ";"

SQL = "SELECT * FROM Employees WHERE 1=1"

' the REPLACE calls are to protect against SQL injection
whatToSearch = Replace( Trim( Request("ASPDBCatSe­arch") ), "'", "''" )
keyword = Replace( Trim( Request("Keyword") ), "'", "''" )

... et cetera ...

See? After we get rid of your commented-out code, it is easy to see that
you are doing
aspdbweb.OPEN
but you are *NOT* doing
Set aspdbweb = Server.CreateObject­("ADODB.Connection")­
*before* the OPEN line!!!

You MUST MUST MUST create objects *BEFORE* you try to use them!

I know that lots of beginners leave in old code just so they don't have to
retype it if they change their minds. I think that's a mistake. Instead,
keep copies of your files (I make copies with the copy dates in their names.
Example: I'll copy "test.asp" to "test.20080828.asp"­) and then really and
truly get rid of the deleted code. Now it's easier to see what code is
*ACTUALLY* in there!


Add comment
iahamed via WebmasterKB.com 31 August 2008 07:11:50 permanent link ]
 Sir thank you so much when add that code it did propound the values as pure
write and no error! O!
However When run the app it encounters the issue.

Sir I did mail to asp ATSIGN juncojunction PERIOD com thank you so much for
the help. And may your generosity full fill your needs in all ways.

Thank you So much Old Pedant.

Thank you.

--
Message posted via WebmasterKB.com
http://www.webmaste­rkb.com/Uwe/Forums.a­spx/asp/200808/1

Add comment
 

Add new comment

As:
Login:  Password:  
 
 
  
 
Пожалуйста, относитесь к собеседникам уважительно, не используйте нецензурные слова, не злоупотребляйте заглавными буквами, не публикуйте рекламу и объявления о купле/продаже, а также материалы нарушающие сетевой этикет или УК РФ.


QAIX > ASP web-programming > Re: Please Help Advanse Search, two parts are working, the 3rd to 31 August 2008 07:11:50

see also:
MySQL Administrator Backups
Stop Scrolling
mysql-4.0.20 with gcc-3.4.1, compile…
пройди тесты:
see also:
problem with TNSLSNR
how do i start this program
A Poem by Gloria Oelman

  Copyright © 2001—2008 QAIX
Idea: Miсhael Monashev
Помощь и задать вопросы можно в сообществе support.qaix.com.
Сообщения об ошибках оставляем в сообществе bugs.qaix.com.
Предложения и комментарии пишем в сообществе suggest.qaix.com.
Информация для родителей.
Write us at:
If you would like to report an abuse of our service, such as a spam message, please .