I'm also thinking this is an HTML problem and not ASP. Sheco pointed out that the select is in the loop. Try:
if not objrs.BOF and not objrs.EOF then
repsonse.write" <SELECT name=""ticketselect"" ID=""Select1"">" & vbcrlf
while not objrs.eof
response.Write "<option value="""&...
Ok I won't discount the problem of spyware, though, touch wood, I've never been troubled by spyware, viruses or anything. I'm also up to date with the Microsoft updates. I will try and investigate my machine further for anything that shouldn't be there. Thanks.
Hi
Thanks for all the replies. It is not showing up on the add/remove list. I also don't have anti-spyware running as I use Adaware that has to be run manually.
I have read somewhere there might be an incompatibility issue with SP2 but I couldn't find any helpful suggestions about this.
Any...
I used to use a method for encrypting Acess databases by doing the following (sorry if this goes wrong but it's all from memory):
- do encrypt database as
- on file types, select all
- rename your database to have a .asp extension, e.g. mydata.asp
This meant that because it was an ASP file it...
Hi
I have been trying to install Visual Basic on my XP Home laptop without success. It gets as far as 'setup is searching for installed components' and then stays there. I have to use task manager to end task it as it says it's not responding.
I have tried allowing all through the firewall...
Woah there! You don't need all that code, just use:
img {
border: 0px;
}
or if you want it to apply just to one image with an id of say myimage:
#myimage {
border: 0px;
}
or put it in a class:
.myimage {
border: 0px;
}
Try
<img src="yourpic" style="border: 0px;" />
Or in your stylesheet if you are using one:
img {
border: 0px;
}
Or if that doesn't do the trick:
img a {
border: 0px;
}
You could try something along the lines of:
<style type="text/css">
<!--
ul {
list-style-image: url(images/redstar.gif);
}
ul li a {
/*value of the but class, or keep the class in the a tag and ignore this*/
}
-->
</style>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Menu</a></li>...
Further addendum. It would appear that the server was fooling us into believing it had rebooted when it really hadn't (we remote in to it so we couldn't actually physically turn it off), which is why a 'reboot' didn't appear to fix the problem.
It would also appear that a script which kept...
Hi
This morning, all our websites that connect to a database suddenly started getting 'unspecified error' error messages. This started happening intermittently but is now a permanent error on any page that connects to a database.
Up until then, they were all working fine, using DNS-less...
Thanks Lrnmore.
The window.close() is to close the popup window after it has re-opened the main window (using the window.opener).
My problem with using cross-domains is that the main window is getting confused about which domain it should be on! I have come up with the solution of using the...
Lrnmore, following your input to this thread, you seem like the kinda person who may be able to answer my question on popups. (please - begging tone!)
Is it possible to popup a new window which is on a different domain, do some stuff in the popup, then auto-close the popup and reopen the main...
Hi
Has anyone encountered a problem whereby the images on the main window disappear (cannot be displayed) after being called by window.opener.location.href?
I have my main page on one domain (on an SSL), on which is a button that calls a popup (on another domain and not on SSL). This popup...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.