Whenever I click on a link (on the shoppingcart site I'm developing) that contains a querystring with the category name and an anchor name (whatever the name of the '#' bit in the URL is), SQL retrieves the category name from the querystring, filters out the appropriate information on the products and the page jumps down to the anchor link.
Once the customer clicks on a product, the processing page is meant to redirect, via the server.redirect command, back to the products page with a querystring identical to the initial filtering one (with the anchor name attached), thus teh customer is back to the same product that he clicked on, without having to scroll down every few seconds to add more of the same product.
However, even though the querystring sent by the response.redirect command is identical, the ASP code can't seperate it again properly and thus the SQL statement shows nothing, as the ASP coding thinks that the info following (and including) the # is apart of the 'category' part of the querystring.
I have a menu made up of images that swap when clicked (ie home_on and home_off, contact_on and contact_off etc) but when i tried to put anchor tags around the images they wont swap any more?
I need to read a querystring from a frameset, actually its the parent of the frameset. The page that will do the reading is not actually one of the pages on the frameset but a pop-up window spawned by a frame in the frameset. Using javascript I would use the window.parent.parent.location.search property but how do I do this with asp? is there an equivalent of this?
I've been building an Intranet app; and have used hidden fields exclusively to pass one or two things from one page to another.
However, now I have reached a point where I may have an email sent to a co-worker, and they want to be able to click on a link in the email to take them directly to the info about that item. While previously, I had been able to get to that item by typing an identifying number in a text box and clicking a submit button, that won't be possible with a link in an email. I guess I will have to use a querystring.
I am not sure how the querystring thing works, but it looks pretty easy on first glance. Is there a tutorial, a really basic one, showing how to use the querystring? Do I have to use the post method now?
I have a home page on an intranet called default.asp I just type in the server name to take me to the default page http://server. The home page has an anchor name tag: <A name="fred">Freds Info</A> It is located by this anchor href tag: <A href="#fred">Up to Freds Info</A> The problem is that when I first use the link to take me up to Freds Info, the default.asp page is reloaded then I am taken to the Freds Info, which is a pain I dont want this to happen. I just want to click the link and be taken to the part on the page. After the page is reloaded I can then use the link again to go up to Freds Info without the page reloading. What is the problem?
In 1.asp: <a name="head"> <iframe src="2.asp#a1"></iframe>
In 2.asp <a href="1.asp?ID=1#head">link</a>
When 1.asp 's opened, it go to anchor of 2.asp.But my intention is when opening the 1.asp will go to anchor 1.asp (head) and iframe will go to anchor 2.asp (a1).They must work independent together
i made a page in asp using querystrings for get some data and when i put in one of the variables in blank in the address bar i get this error:
Microsoft VBScript runtime error '800a000d'
Type mismatch: '[string: ""]'
/history.asp, line 82
i don't know how to fix it...in my code i have sth like this:
If Request.QueryString("var1")="sth" AND Request.QueryString("var2")>0 Then 'make some process End If
so in the "var2" when it's empty i get an error :/ should i do another if for when is it empty just for in some way "handle" it and don't let occure problems while some user does sth like that??
I've noticed a strange problem with setting cookies in ASP when the cookie name you're setting exists in the querystring. The company I work for has many partner sites who link to our site like this: www.mycompany.com/partner.asp?PartnerID=??? The partner.asp page then sets a cookie called PartnerID containing the value from the querystring.
We have noticed, however, that if the partner calls the partner.asp page and alters the capitalization of 'PartnerID' then another cookie gets set which takes the capitalization of 'PartnerID' from the querystring. All of the other asp pages in the site then seem to read the first cookie set and thus it appears that the 'wrong' partner settings are being used.
Has anyone experienced this problem before? Unfortunately altering the cookie or querystring names would be a non-trivial task so this is not an option at the moment.
Code: response.redirect(request.querystring("page")) It worked fine because I didn't need to pass on any other values from the querystrings. But now, I need something that will redirect the page and pass all querystring values. I tried this:
Code: response.redirect(request.querystring("page") & "&" & request.querystring) But it brings me to something like this: http://www.site.com/thepage.asp&page%3D/thepage.asp&id%3D7 instead of what I would like for it to say: http://www.site.com/thepage.asp&page=/thepage.asp&id=7
Now.... I know that I could have written:
Code: response.redirect(request.querystring("page") & "&id=" & request.querystring("id")) But that won't work because I actually have many querystrings and I won't know which ones are used, etc. I want it to just transfer all the querystring data.
Oh, and if the redirect could take out the "page" querystring.. that would be great. Because I don't need it.. it is only used to know what page to go to. I just need to keep all the other querystrings.
Can ASP use valueless or variable less QueryStrings like this: http://yoursite.com/forum/activate.asp?985486. (Not a real link). I would also like to know if it can use addresses like this: http://yoursite.com/forum/activate.asp/ZeeMan48. (Not a real link either.) I would like to know for some work I am doing.
I can populate the id and type values in my form fields just fine but equip_id and mac_addr will never be consistent. Certain case will have only one equip_id and one mac_addr value and in other case I will have equip_id0 thru equip_id20 and same with mac_addr. I simply want to parse whatever response I get and display those equip_id and mac_addr values dynamically in a select box. Is that possible?
I need to find out how to incorporate a popup window that passes a querystring, after some quick research I found that by using JavaScript that you can pop up a window Code:
This means that the content in the div tag when larger than the div height has a scroll bar at the side to view all the projects. Once the projects area displayed there is a image at the end of each row that when clicked goes to the db and pull back reports for that project. This is all done by passing vars in the querystring pulling info from the db and writing out the appropriate code. Code:
I am able to create and read cookies, however, I have to *create cookies from querystrings* (I cannot do this from form values, because the response page *redirects to the page I am working on, so there is no direct way to use Request.Form("var")*
Anyway, when I create the cookie, and remove the querystrings, of course, the cookie no longer works.
How do I take querystring values and turn them into cookies, such as page.asp?name=dave
to create a cookie 'username' with value 'dave'
and when they visit just plain page.asp, it remembers the value 'dave'
should jump to the "foo" anchor in the page that results from the querystring (comments.asp?id=34)... but sometimes in IE6 it reads id not as "34" but as "34#foo" ... odd behaviour and i cant recreate it reliably, i have two very similar sites and one seccumbed to this bug and the other didnt, what i had to do was double check the input value (i was basically using isnumeric on it) and Code:
I'm trying to do the following: Code: response.redirect("partnerdetails.asp?"&request.QueryString&"#card") ASP tries to take the html as part of the querystring, putting the anchor like this: Code: response.redirect("partnerdetails.asp#card?"&request.QueryString") Also creates an error. How do I make these work together?
I have a web page that accesses a database to pull news stories down and create a link to another page that is populated with the news stories. These stories take up enough space that the page has to scroll. I want to be able to have the links it generate go directly to an anchor on the second page where the news story begins.
Can someone point me in the right direction to a place where I can get more information about this?
How would I strip all <a href=""></a> tags from a block of text using ASP?I assume you would need to find "<" and ">" tags, but I am not sure how you would actually remove it from the text.
i am not sure if i am on the right section to place this thread, but my code is in .asp and i am using a access database and i wanted to link a text to another text in a seperate page that contains a repeat region that its pulling from the access database.
this lists like 7 records at a time and i was using the anchor method to link the text from the home page to the text in one of the fields that is in the repeat region and was not succesfull, It would take me to the page but would not go to that specific recordset that i have placed the anchor.
Is there a way to get the current page's url with the anchor as well? If my url is test.asp#fubar, and I get Request.ServerVariables("URL"), I don't get the #fubar at the end - anyone know how to get this bit?
<a href="http://www.sitepoint.com" target="_blank">www.sitepoint.com</a> out The problem is that urls from my domain shouldn't be changed for example if href="/some_path" or href="http://www.mysite.com/some_path"
I try making some expressions with RegexBuddy but it didnt worked very nice.
Im new to ASP, and have hit a snag.I am trying to build a page that has 'A-B-C-D...' links along the top of the page. When you click 'A', it goes to a table with everyones usernames and grabs the ones that start with the letter A. The problem is that the username field contains the names of people who wrote an article, so in some cases there are actually two names in this field. So for example, if it contained 'Bob, Jack', I would need 'Bob' to show up under B, and 'Jack' under J. Im totally stuck as to how I might do this. Changing the layout of my tables is no trouble if a different table setup helps