Wildcard Character/syntax

I have a little script that is supposed to check for a certain value in a db column, and then do something if that particular calue is present:Code:

...<%ElseIf rsIDK.Fields.Item("my_column").Value = "/default.asp" then ...

The problem is that my_column can contain up to 300 characters, so the code above doesn't work. What I really need is a wildcard at the end of "/default.asp" but I don't really know the correct way of doing this.

View Replies


ADVERTISEMENT

Syntax Error Converting From A Character String To Uniqueidentifier

I'm passing a unique identifier from page1 to page2 to page3 querried from MS SQL Server. When I pass the value, it puts the value in the curly brackets. (Page1 is for display and Page2 is for edit and Page3 is update edit)

When I go to Page3, it gives me an error saying "Syntax error converting from a character string to uniqueidentifier" {7171B9BD-4599-43D9-9521-3DA583A1BB1A} This is the value and the error page says "id=%7B7171B9BD-4599-43D9-9521-3DA583A1BB1A%7D" It seems tp put "%7B" and "%7D" for "{" and "}". Has anyone seen this?

I'm also passing numbers and text and they don't seem to have this problem, just the unique key.

View Replies View Related

Wildcard

I have a script which checks the current page name and write out a certain class if it's true to achieve an active menu item effect.

I want to expand upon it a little and have it check for any pages beginning with business rather than list business_dir_info.asp?id=2517 where there are loads of ids. At the moment it's just set to check for business.asp which is the top level page, is there any sort of wildcard character I can use?

View Replies View Related

Wildcard

Var1 's content can be "errorone" o "errortwo" or "good". I need to detect if there is "errorone" or "errortwo" with the If clause. How can I do that using the wildcard?

Example that doesnt work: if var1 = *"error"* then

View Replies View Related

Wildcard

Dear all, if in asp. i wanna to use the command request.querystring to check the URl. For example, my item when passing to next form will be either 4 or 6 character. How do i tell asp what to do if the string pass 4 character and if it pass 6 character.

My code example for 4 character is A100, 6 character is A10001. different number of character will have to perform different task for me.

I try to use "?" as wildcard but it fail Btw if i had stored chiense character in ACCESS, but when it go thru asp n display on IE, it show "???" instead of the chinese character.

View Replies View Related

Height Wildcard?

I am trying to show a series of movies on a web page. All of the movies are the same width, but have different heights. When I take out the width and height parameters, the pictures display fine, but the movies get the bottom cut off. When I put the parameters back, it stretches out the images to fit the entire box. Any way to make the height parameter a wildcard?

<<%=whattouse%> src="Upload/<%=(RS1.Fields.Item("xmedia_asset").Value)%>"
width="320" height="300" align="left" loop="false" controller="true"
autoplay="false"></<%=whattouse%>>

View Replies View Related

Wildcard Search

I have the following SQL statement that returns a result set based on the exact input stored in a session variable

If reqname <> "" Then
strSQL = strSQL & "AND(ABR_REQUESTOR='" & reqname & "')"

The variable “reqname” is set to a session variable.

I amended the SQL to do a wildcard search instead of searching for the exact string stored in the Session variable:

I altered the SQL as follows:

strSQL = strSQL & "AND(ABR_REQUESTOR LIKE '" & reqname & "%')"

The problem is the field ABR_REQUESTOR stores the first and last name separated by a space...i.e. John Smith

Using the above SQL will return John Smith if I use J, Jo, Joh.
But, if I want to search for Smith by using S, or Sm, etc. it won't work.

I need to alter the statement to look for anything after a space?

View Replies View Related

Wildcard Not Working

I have an Access database. I am using a dropdown search box. One of the options is "Search All States" and I set the value to %. In the recordset on the results page, I have the default set to %. Here is the SQL statement:

SELECT *
FROM ClientInfo
WHERE State = 'varState'
and varState = Request.Form("State")

However, I get no results when choosing this option in the dropdown Code:.

View Replies View Related

Using A Wildcard In An If Else Statement

In an ecommerce situation, when a category link is clicked, my results page shows the category name at the top of the page

This is working great apart from when a search is done without specifying category eg from the search page

So for example Results.asp?Category=%25&Keyword=&Submit=Search

This gives all products in the results page but just gives the last category name in the table as the heading

I would like to write a condition that just presents a static message eg �Results� when the search wildcard % is passed Code:

View Replies View Related

Using A Wildcard In Mysql

I want to post a wildcard IP in a varchar field in my mysql table so when I call it in the script it shows up giving that entire range of IP's. I've tried doing it like.
24.129.184.* but it doesn't seem to work.

View Replies View Related

Variable Wildcard

Not sure if this is possible but, is there any way to search a variable like,

var = "I like to play jazz"

If "jazz" * = var then ( If the word jazz is included in the variable then)
response.write "Found Match"
end if

View Replies View Related

Simple Wildcard Question...

what I want to do is get read a database entry and if it doesn't start with http:// then I want to include it.

I can't figure out what to use as a wildcard in the first line though

IF rsGuestbook("VisitorHome") = "http://" THEN
%>
<a href="<%=rsGuestbook("VisitorHome")%>" target="_blank">Name:
<%
ELSE
%>
<a href="http://<%=rsGuestbook("VisitorHome")%>" target="_blank">Name:
<%
END IF

View Replies View Related

Wildcard & Response.write

I'm trying to compare a form field from the previous page & write a response in the html on the current page. e.g

if (form field value) is like "Custom" then write Correct or else write Incorrect. Here's the code I have curently Code:

<%If (Request("RangeColour")) = ("Custom*") Then Response.Write("Correct") : Response.Write("")else Response.Write("Incorrect")%>

I've tried *, &, ? but they don't appear to work. I've also tried like "Custom*" but I receive an error about a sub or function not being declared.

View Replies View Related

Serach Db With Id Param Wildcard

I have a form where a user can choose one or more options from drop-down menus to search the db :

service
town
county

The id's are all numbers in a MySql database. I have put the default param for each search as % and this only changes if the relevant search option is chosen: Code:

View Replies View Related

IIS 6 SQL Injection Sanitation ISAPI Wildcard

I created an ISAPI dll application to prevent SQL Injection attempts by
intercepting the HTTP requests and sanitizing both GET and POST variables (or
any combination of both) before the request reaches the intended code. This
is especially useful for legacy applications not designed to deal with MS SQL
Server Injection attempts. Though this application was designed with MS SQL
Server in mind, it can be used with no or minimal changes with other database
engines.

This ISAPI is only compatible with Internet Information Server (IIS) 6.0
which comes with Windows 2003. Windows XP uses IIS 5 engine which DOES NOT
support ISAPI Wildcard.

View Replies View Related

Can't Pass % Wildcard Variable In Querystring

I'm trying to pass the wildcard variable % to another page via
request.querystring.

When I go to pick up the variable through request.querystring, it will
never diplay the "%" if one is included. It will diplay any other
characters included in the variable though.

Code from page 1:

<%response.write "<a href='Page_2.asp?Severity=" & varCombo_Severity &
"&Owner=" & varCombo_Owner & "'>" & "<i> Go to Page 2 </i>" & "</a>"
%>

Code from page 2:

<%varCombo_Severity = Request.Querystring ("Severity")%>
<%varCombo_Owner = Request.Querystring ("Owner")%>

Result: No % wildcards are passed though to page 2

Any ideas?

View Replies View Related

%20 Character

I have a login form in which i have logins for company as 'National City"
But when i capture the login name to give it in my query on some other form as Request.Querystring(username)
Its recognises it as National%20City...
i dont want to chhange my login names and keep it as NationalCity as one full word.How can i tell ASP to recoginze this as a space in the query ?

View Replies View Related

Last Character

How do I delete the last character in a string?

View Replies View Related

Character Set

I am using mySQL with ASP. I have a trouble with Turkish characters as I am
tring to get and display data from mySQL database. However, I can see whole
Turkish characters exactly when I use phpMyAdmin.I used the following tags on HTML but I couldn't achieve to display Turkish characters in any way.

mySQL database lang: latin5_turkish_ci
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-9">
and

<% @Language = "VBScript" Codepage="1254"%>
Session.LCID = 1055
Session.CodePage = 1254

View Replies View Related

' Character In SQL

We have an application which uses surname and the date of birth to allow people to login.
The SQL gives an error if the user's surname contains the character '

View Replies View Related

/ Character

I'm trying to set a session variable where two variables are seperated by a backslash:

Dim a
Dim b
a = Request.QueryString("Class")
b = Request.QueryString("Group")

Session("FTEClassGroup" & y) = a + "/" + b

I can't get this to work? I'm not sure, but is the backslash being seen as a string instead of the actual backslash character?

View Replies View Related

First Four Character

i m declare one variable and it hold the name of a person

eg: strName = "Arvind Singh"

and i want to put first four character in an other variable please tell me the way to do this.

View Replies View Related

Character Encoding

I have a partner sending me by post method to an asp page some text (xml
string).

It arrives to my page encoded as follows
%9a%2f%Purchaseorder%3....f

The < and > and spaces are replaced by nuùmbers and percentage sign
I am using Request.BinaryRead(BytesTotal) and then doing response write and
I am getting exactly the same string with the encoding
How can tell my asp page to translate the encoded text to normal text?

View Replies View Related

Special Character

How do I remove those special characters in a variable? I think there are a dozen special character and so I use a dozen replace object. Is there an object that call this in one call instead of a dozen?

View Replies View Related

Currecy Character

I wonder why my computer with UK settings returns '$' when I call the 'FormatCurrency' function?

View Replies View Related

ESCAPE CHARACTER

I'm having a problem finding/using an escape character with this ASP/JScript application I'm creating. Basically I have text sometimes that has apostrophes or double quotations in them, but they won't be INSERTED unless I manually take them out.

Ex: INSERT INTO tbl1 (vendor,reason) VALUES (81,"This is only a test, but there is an apostrophe and it's only going to make things worse.")

That apostrophe in "it's" is kiling everything. I've used the replace method to change it to " ' ", but that STILL doesn't work. I can't find MS SQL's ESCAPE CHARACTER. I've tried several directions of the backslash, but no luck.

View Replies View Related

Escape Character??

I am trying to only have a link show if there is a certin value in the DB. This is what I am trying:

<% if (rsWelcome.Fields.Item("access_level").Value) = "admin" then

response.Write("| - <a href="sps_main.asp">Sales Training Support </a>-")

end if %>


BUT... this is the error I get:

Expected ')'

/sta/topnav_test.asp, line 9 response.Write("| - <a href="sps_main.asp">Sales Training Support </a>-") How do I use quotes in a "response" and have the app server ignore them??

View Replies View Related

Unrecognised Character

The application should have a way of alerting the user if it does not recognize a character used by the website and give the user the ability to make adjustments to the unrecognized characters. The system should then remember the characters that have been adjusted by the user.

View Replies View Related

String Character

can someone please tell me how to add the " character to a string
i've already tried:
<%
dim string

string = "something"

string = string & """
%>
string should equal something" but doesn't work ?

View Replies View Related

After 80th Character

how can I add "vbCrLf" after every 80th character of a string. Suppose there is a string containg 600 characters and I want to pass on the string value to some variable, adding "vbCrLf" code after every 80th character.

View Replies View Related

Chinese Character

some one cuts and pastes the chinese charcters.
they are saved in DB as
---- case1 : ----

& # 6 5 3 9 6 ; & # 6 5 4 2 7 ; & # 6 5 4 1 9 ;
----
i used the space above as it is converting the characters while posting..
but i noticed some few records which are saved as

-- case 2 --
ÓÀÀÖ´óµäÏ·ÎÄÈýÖÖУ
---

if values are stored as case1 then i have no problem.
but with the case2 .the chinese characters are shown good in few pages and at few pages they are shown as it like symbols.
when i cheked the its the same.what shd i do to see that in a html page these character codes display correctly?

View Replies View Related

Underscore Character

Is there a way to make the underscore Character display in a browser? I've
tried several different fonts but the "_" character will not display.

View Replies View Related

Removing Last Character

ive got a string where i woulld like to remove the last character it probably seems simple 2 u but i cant work it out
can anyone tell me how to remove it.

View Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved