Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. GreatSeaSpider

    Quick question about vshadow.exe from the vss SDK

    Hi there, I'm wanting to use a script similar to the one described here: http://blogs.msdn.com/adioltean/archive/2005/01/05/346793.aspx on my 2008 x64 server. I've done similar before, but on a 32 bit server 2003 machine. My problem is this... the version of vshadow.exe that comes with the...
  2. GreatSeaSpider

    Variables in Variables

    Hi there, yes you could use evaluate to solve your problem with a slight change to your code: <CFLOOP FROM="1" TO="11" INDEX="i"> <CFSCRIPT> evaluate("VARIABLES.Date#i# = DateFormat(DateAdd('M', #i#, Now()))"); </CFSCRIPT> </CFLOOP> hope this helps, Pete
  3. GreatSeaSpider

    trouble serving .aspx scripts

    Thanks that was exactly it! i new it would be something simple! Pete
  4. GreatSeaSpider

    trouble serving .aspx scripts

    Hi there, Random problem with my windows 2k3 server running iis 6. It's happily serving many many sites running coldfusion, but when i needed to quickly deploy a customer's simple .net site, i ran into a problem..... i created a new application pool for the site, made sure that index.aspx was...
  5. GreatSeaSpider

    PDF Question

    I'm trying to do exactly the same thing, have you found a way to do it? cheers, Pete
  6. GreatSeaSpider

    weird XP pro laptop problem

    Thanks for the replies, yeah i've checked the bios, and tried the function key trick, still nothing :( any other ideas? like i said it doesnt do it using the install on the tiny restart disk so i'm thinking its some windows configuration problem or a driver issue cheers, Pete
  7. GreatSeaSpider

    weird XP pro laptop problem

    Hi guys, just bought a second hand laptop for my other half, its a tiny laptop but other than that its pretty good :) it came with the default tiny install as done by the tiny recovery disk, which obviously needed to go as quickly as humanly possible (xp on a fat32 partition?!?). So now i've...
  8. GreatSeaSpider

    High level encryption

    Hi there, I'm having an odd problem with my 2k3 server. I'm running a web app which generates secured pdf's, which works fine when tested on our 2k server here in the office (which has the high level encryption pack installed). The code fails when it runs on the 2k3 server, and complains that...
  9. GreatSeaSpider

    When I ping I get the wrong IP Addy returned

    I think the next thing i'd do is go and sit at the DNS server and compare the records for the problem machine, and the one that works, see if that highlights a problem. If it all looks good then you can at least rule out a dns problem!
  10. GreatSeaSpider

    When I ping I get the wrong IP Addy returned

    it sounds to me like your dns server still has the old ip. you can use nslookup to determine if this is the case. cheers, Pete
  11. GreatSeaSpider

    High level enycryption

    Hi there, I'm having an odd problem with my 2k3 server. I'm running a web app which generates secured pdf's, which works fine when tested on our 2k server here in the office (which has the high level encryption pack installed). The code fails when it runs on the 2k3 server, and complains that...
  12. GreatSeaSpider

    OWA Login problems

    Thanks guys, It lets me in using domain\username cheers, Pete
  13. GreatSeaSpider

    Phantom message in public folder

    lol thanks for that *brushes problem under rug* [thumbsup2]
  14. GreatSeaSpider

    Phantom message in public folder

    I've just come accross the same problem, we have a common inbox which we all check, outlook shows it having 1 unread email, but there's nothing there [ponder] andybody else seen this? cheers, Pete
  15. GreatSeaSpider

    OWA Login problems

    Hi all, One of our clients has a nice new SBS2K3 box running along side an old NT4 SBS (which makes life interesting!) OWA worked fine until recently when I installed SP1 for exchange 2003 and GFI Mail Security. Now when users try to log in using OWA, they enter their details and OWA replies...
  16. GreatSeaSpider

    How can I access cookie created in javascript?

    i've done this on one of my sites, set the cookie in js, then from your code u can use Request.Cookies["name"].Value Pete
  17. GreatSeaSpider

    XML document using httpget

    hi guys, a script i'm writing needs to access an xml file on another web server which i access using httpget like this: http://user:pass@www.domain.com/CURRENT.XML i'm not great at .net so i was wondering if somebody could point me in the right direction at the moment i'm trying to open it...
  18. GreatSeaSpider

    Outbound SMTP problem

    Hi guys, I'm having trouble with a mail server. the server is an NT4 machine with exchange 5.5 sp4. I cant get the exchange to send mail to an external domain correctly. I think the problem has something to do with IMS's Address space thingy. i've managed to get it so that it connects to the...
  19. GreatSeaSpider

    Slow response from server

    Hi guys, i'm having trouble with one of our web servers, it has recently (since january) started to respond more and more slowly. We have the server monitored and it's connect time has dropped from a nice number around 0.07 seconds to around 1.5 seconds. its ping times have gone up slightly...
  20. GreatSeaSpider

    Auto-incremnting numbers with stored procedures question

    Hello again! I've tried to use nigels sql in one of my stored procedures to get it working. it fails to assign a value for the field order_id. Here's a copy of my sp: ---------------------------------------------------------- CREATE PROCEDURE [sp_addorder] ( @acc_number [int]...

Part and Inventory Search

Back
Top