473,378 Members | 1,489 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,378 software developers and data experts.

Any tool in ASP to find out occurrence of a certain word or words

Hi,
I am maintaining quite a few asp applications. In one of those, I have to
change the response.redirect to a particular page. This application has more
than fifty asp pages. Instead of going through manually through each page to
find the response.redirect phrase, is there any tool that will find and
report all occurences of response.redirect (in the present scenario) among
all those fifty asp pages? If there is one I would like to know. Thanks in
advance. Regards.
Sep 14 '05 #1
8 1733
ASP Express has a global search - even a global search and replace, if
needed, searching all files in a given directory structure, for specific
strings -
It then gives a report at the end, listing all pages with that string
included in them.

Is this what you're after?

David Wier
http://aspexpress.com
"Jack" <Ja**@discussions.microsoft.com> wrote in message
news:58**********************************@microsof t.com...
Hi,
I am maintaining quite a few asp applications. In one of those, I have to
change the response.redirect to a particular page. This application has
more
than fifty asp pages. Instead of going through manually through each page
to
find the response.redirect phrase, is there any tool that will find and
report all occurences of response.redirect (in the present scenario) among
all those fifty asp pages? If there is one I would like to know. Thanks in
advance. Regards.

Sep 14 '05 #2
Thanks Elmo,
This is the kind of product I am looking for. I will go to their site and
check out their product. Regards.

"Elmo Watson" wrote:
ASP Express has a global search - even a global search and replace, if
needed, searching all files in a given directory structure, for specific
strings -
It then gives a report at the end, listing all pages with that string
included in them.

Is this what you're after?

David Wier
http://aspexpress.com
"Jack" <Ja**@discussions.microsoft.com> wrote in message
news:58**********************************@microsof t.com...
Hi,
I am maintaining quite a few asp applications. In one of those, I have to
change the response.redirect to a particular page. This application has
more
than fifty asp pages. Instead of going through manually through each page
to
find the response.redirect phrase, is there any tool that will find and
report all occurences of response.redirect (in the present scenario) among
all those fifty asp pages? If there is one I would like to know. Thanks in
advance. Regards.


Sep 14 '05 #3
Err.. Visual Interdev

I use UltraEdit32. It is awesome, let's you search and replace special
characters like new line, tab etc. It also has column mode which works with
columns of text in the same way notepad works with lines of text, (for
deleting and inserting etc).

"Elmo Watson" <sp**********@No.Spam.Yahho.com> wrote in message
news:et**************@tk2msftngp13.phx.gbl...
ASP Express has a global search - even a global search and replace, if
needed, searching all files in a given directory structure, for specific
strings -
It then gives a report at the end, listing all pages with that string
included in them.

Is this what you're after?

David Wier
http://aspexpress.com
"Jack" <Ja**@discussions.microsoft.com> wrote in message
news:58**********************************@microsof t.com...
Hi,
I am maintaining quite a few asp applications. In one of those, I have to
change the response.redirect to a particular page. This application has
more
than fifty asp pages. Instead of going through manually through each page
to
find the response.redirect phrase, is there any tool that will find and
report all occurences of response.redirect (in the present scenario)
among
all those fifty asp pages? If there is one I would like to know. Thanks
in
advance. Regards.


Sep 14 '05 #4
Hey,
I am maintaining quite a few asp applications. In one of those, I have
to
change the response.redirect to a particular page. This application has
more
than fifty asp pages. Instead of going through manually through each
page to find the response.redirect phrase, is there any tool that will
find and
report all occurences of response.redirect (in the present scenario)
among all those fifty asp pages? If there is one I would like to know.
I use UltraEdit32. It is awesome, let's you search and replace special
characters like new line, tab etc. It also has column mode which works
with columns of text in the same way notepad works with lines of text,
(for deleting and inserting etc).

ASP Express has a global search - even a global search and replace, if
needed, searching all files in a given directory structure, for specific
strings -
It then gives a report at the end, listing all pages with that string
included in them.


Believe it or not, good ole' FrontPage has built in functionality that
allows for search (and replace, if needed) on a page bases, open pages
basis, selected pages, or all pages in site basis. It even allows you to use
RegExp's, which makes it a powerful function. I particularly love the
concept of "search all open pages" and "search selected pages", as that
eases the process of limiting the search to a set of pages.
//Leif Beaton
Sep 14 '05 #5
Just about any text editor, except maybe NotePad will do this.

www.editplus.com is my favorite.

Bob Lehmann

"Jack" <Ja**@discussions.microsoft.com> wrote in message
news:58**********************************@microsof t.com...
Hi,
I am maintaining quite a few asp applications. In one of those, I have to
change the response.redirect to a particular page. This application has more than fifty asp pages. Instead of going through manually through each page to find the response.redirect phrase, is there any tool that will find and
report all occurences of response.redirect (in the present scenario) among
all those fifty asp pages? If there is one I would like to know. Thanks in
advance. Regards.

Sep 15 '05 #6
I use the grep filter function of TextPipe Pro, which I use for all my
web site mass-editing. It's a stream editor with a GUI interface. -
www.datamystic.com

Sep 15 '05 #7
Jack wrote:
Hi,
I am maintaining quite a few asp applications. In one of those, I have to
change the response.redirect to a particular page. This application has more
than fifty asp pages. Instead of going through manually through each page to
find the response.redirect phrase, is there any tool that will find and
report all occurences of response.redirect (in the present scenario) among
all those fifty asp pages? If there is one I would like to know. Thanks in
advance. Regards.


Use a command window:
for %v in (*.asp) do find/I "response.redirect" %v >> listfile.dat

The above loops through all files of form *.asp. For each it does a
case-insensitive search (/I) for the string "response.redirect". The
output of the search is appended to listfile.dat.

Look up help for the for and find commands with
find/?
for/?
Sep 15 '05 #8
>I use the grep filter function of TextPipe Pro

The Zeus for Windows editor has a built in grep utility:

http://www.zeusedit.com

Note: Zeus is shareware (45 day trial).

Jussi Jumppanen
Author: Zeus for Windows

Sep 19 '05 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

9
by: Robey Holderith | last post by:
Does anybody know of a tool that can tell me all possible exceptions that might occur in each line of code? What I'm hoping to find is something like the following: given all necessary python...
31
by: Brynn | last post by:
I want to thank the person that sent the nasty messages to my contact.asp test page ... you have inspired me !!! I have now added a bad_words filter both to my JSValidation script (going up on...
11
by: JoshuaF | last post by:
hello everyone i am very new to postgresql 7.3.3 and am using it on my mac G4 OS X and i am having some trouble which i hope you can help me out with some answers to my questions: 1.) How can I...
17
by: clintonG | last post by:
I'm using an .aspx tool I found at but as nice as the interface is I think I need to consider using others. Some can generate C# I understand. Your preferences please... <%= Clinton Gallagher ...
10
by: PJ6 | last post by:
I've read some of the posts on this subject but let me add this little twist to the subject's question- I can appreciate the utility of doing screen caps off of other websites with PSP or PhotoShop...
10
by: Johny | last post by:
I need to find all the same words in a text . What would be the best idea to do that? I used string.find but it does not work properly for the words. Let suppose I want to find a number 324 in...
6
by: Xernoth | last post by:
Hi, I have an exercise that requests the following: Write a function that reads words from an input stream and stores them in a vector. Use that function both to write programs that count the...
3
by: Peter Proost | last post by:
Hi group first of all I need to say that I almost never use regex hence my question may be stupid. I'm using regex to find all words that start with an @ in a string. But the regex that I figured...
9
by: ARC | last post by:
Hello all, I developed a tool a year or so ago for adding your own spell-checker to an access application. This is mainly for those using the runtime, as you can't distribute the spell-checker...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.