I am working on a jquery addition to my site that will "pop-up" using jquery like a modal box but just to confirm that the customer has added the item to the cart. Does anyone have any design...
The problem seems to be with the height of #menu that is pushing the menu down in FF. How can I make IE use 33px and FF/Chrome use 46px for the heights in one css file?
The layout is coming from style.css. I also have newstyle.css but that doesn't have anything pertaining to the layout in it. Customer service and my account are in style.css and within the #topnotes...
My guess is that your clients server doesn't know what server "SRV-OE" is. That seems like a DNS entry you would have internally on your network. Do you have an ip or is SRV-OE the name of the sql...
I would agree about getting rid of the refresh.asp script. My guess is that the either the server has a different timeout set that overwrites what you set or you are setting the parameter incorrectly.
I have been working on a theme for a site I am building and it looks great in IE. When I view this site in Firefox/Chrome, the horizontal menu is lower than it should be which in turn pushes the...
There isn't really any need to give it the .shtml extension. If the pages with .shtml contain ASP code, they won't work. I suggest just giving them a .asp extension. If the page doesn't contain ASP...
If you have XP Pro you can enable IIS, I don't suggest trying to enable IIS on XP Home.
http://www.webwizguide.com/asp/tutorials/installing_iis_winXP_pro.asp
I don't believe that you can do multiple INSERT commands by seperating them by "AND"'s. I suggest creating seperate INSERT queries and doing a loop if needed.
You could use the Replace Function
output = Replace(output, "link=", "a href=")
output = Replace(output, "/link", "/a")
output = Replace(output, "[", "<")
output = Replace(output, "]", ">")
Using t-sql gives you more options than if you use the GUI of sql server. The GUI will work but it doesn't always use the shortest method of doing something. For example (this is correct @ least in...
You could use the replace function of ASP to do this. An example would be:
<% text_file_item = "bklafdlafn 23 2342 4lasf afalfjdaf 121 valkjraf 12244 --000 trdx 99-- badlfkjaf ksadf kda --000 tdxn...
Anything can be done in any language. Corporations are mostly either linux or windows based. Based on what kind of shop people are using basically decides what they write their web pages in. I don't...
Checkout http://www.connectionstrings.com/?carrier=access for your access db connection string. I suggest putting this in a connection.asp page and then including connection.asp on all pages that...