Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsFree MagazinesWhite PapersSubmit Content
Discussion GroupsASP.NETWindows FormsLanguages.NET FrameworkVisual Studio.NET
Articles.NET FrameworkASP.NETToolsWindows Forms
.NET DirectoryOpen Source ProjectsUser GroupsWeb Resources
Related Topics
Visual Basic 6SQL ServerMS AccessOther DB ProductsMS Server ProductsMore Topics ...

.NET Forum / ASP.NET / General / August 2007

Tip: Looking for answers? Try searching our database.

Need Some Help With Query Processing

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
pbd22 - 29 Aug 2007 21:38 GMT
Hi.

I need some help with structuring my query strings.

I have a form with a search bar and some links. Each
link is a search type (such as "community"). The HREF
for the link's anchor looks like the following:

<a href="?searchtype=2">Community</a>

When the user clicks on the Community search type, the query string
looks like:

http://www.domain.com/test.htm?searchtype=2

Then, he puts in his search string, such as "babysitters
in los angeles".

I want the string to look like the below before the form
is posted:

http://www.domain.com/test.htm?searchtype=2?query=babysitters+in+los+angeles

But it looks like:

http://www.domain.com/test.htm?query=babysitters+in+los+angeles

How do i get the querystring to "add" the query to the searchtype and
not "replace" the searchtype with the query?

I thank you.
Alexey Smirnov - 29 Aug 2007 23:33 GMT
> Hi.
>
[quoted text clipped - 27 lines]
>
> I thank you.

You can't do it like this. You need to get the existing query, add a
new string and pass it to the new url.

For example,

string new_url =
"http://www.domain.com/test.htm?searchtype="
+ Request.QueryString["searchtype"]
+ "&"
+ "query=" + Request.QueryString["query"];
pbd22 - 31 Aug 2007 16:05 GMT
> > Hi.
>
[quoted text clipped - 38 lines]
> + "&"
> + "query=" + Request.QueryString["query"];

OK, thanks. I guess I am still a little confused.

Doesn't your response imply that the querystring is already well
formed?
I would need searchtype and query in he querystring to be able to call
Request.QueryString["searchtype"] or Request.QueryString["query"] .
If you mean to pull this information from the querystring prior to
submitting
the form, I still don't understand how the querystring gets formed. It
does,
however, make more sense to simply take local variables where
searchtype and query are stored and construct the querystring from
that - if that is OK.

I am assuming that the new_url string you have is what would be
created
when the form is submit? Would you mind showing me how, exactly, the
new string would get passed to the next page? Filling out the script
would be helpful to me. below is my form with my query input box:

<form id="searchWidget">
                           <span>&nbsp;</span>
                           <input class="query" size="40"
name="query" type="text">
                           <input class="submit" value="Search"
type="submit">
                           <a class="adv" href="/
index.master_search.aspx?a=a&amp;x=1">Advanced Search</a>
                           <span>&nbsp;</span>
                       </form>

Thanks and apologies for my continued confusion here.
Alexey Smirnov - 31 Aug 2007 18:59 GMT
> > > Hi.
>
[quoted text clipped - 73 lines]
>
> - Show quoted text -

I thought you are talking about ASP.NET. The form you have here is not
a server form (runat="server") and you cannot use my example with
Request.QueryString. Either, you have to use a javascript to build url
and redirect to it, or you can use GET method for example

<form action="/index.master_search.aspx" method="GET">
<input class="query" size="40" name="query" type="text">
<input type="hidden" name="searchtype" value="2"
<input class="submit" value="Search" type="submit">
</form>

When you type "blabla" in the text field and submit the form you would
be redirected to

/index.master_search.aspx?query=blabla&searchtype=2

Rate this thread:







Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.