Add Trusted Zone From ASP?
Is it possible to add a domain name to trusted zones from an ASP page?
View RepliesIs it possible to add a domain name to trusted zones from an ASP page?
View RepliesIs there a way to detect if the servers domain is added to the user's trusted zone?
View Replies View RelatedI have an asp based site which for various reasons has to go in either
Trusted Sites or Intranet under security in IE7. However as soon as I
place it in either of these zoneI can no longer use session variables.
These session variables work fine when it is in the Internet zone. Any
ideas anyone?
We have this application that uses ASP and requires the user to add our website as Trusted Site before he could proceed or even work well using our website.
I know it's just a simple click click click with the Internet Options but with would like our users to be prompted that the site need to be added as Trusted Site so that they will not encounter issues later on.
Not sure if this is the right place but I need to get this website going and am having problems with the ODBC driver connecting to the SQL server When setting up the driver I am getting a sql error 18452 login failed reason: not associated with a trusted SQL connection I am at a loss as I installed this on another machine and it worked.
View Replies View RelatedI know this is probably simple, but I'll ask anyway.
I have a form which when submitted to the database the field in the database
automatically adds date and time which is fine. My only problem is that my
site is for the GMT UK time zone, but the database resides on a American
server, IE the database records the local American time (-5 hours
difference)
New to ASP,JScript,VBScript.I have a server in one time zone and a client in another. The ASP reads time from the server.I need capture the time on the client and use that in the server code.
View Replies View RelatedIs there an asp component anywhere which will convert a GMT time in the past
to a different time zone e.g. EST?
You can't just take the hours off as there is often daylight saving hours to
take into consideration.
I got a problem solving on how to convert the following time zone all into EST. My server is currently in EST but i need to convert the following time zone [PST,MST,CST] all into EST given all the exact time. eg 09:00 AM PST, 1:00 PM MST, 2:00 PM CST etc etc.
PST to EST
MST to EST
CST to EST
I've been working for this a week now and i hope somebody will give me sample code
I have run into a bit of a time zone problem. Basically, I am using ASP and Javascript to handle dates and guess what... you got it, the client could be in any time zone but the server will always be in the same one (UK actually).
I have figured the best method would be to use Javascript to determine the GMT offset (.getTimeZoneOffset), then pass that to my ASP script (I am already doing Javascript->ASP work, I am just appending this to the end of the querystring). ASP will have two dates then, the server date and the client date, and then the client GMT offset. Once I get this offset in ASP, how can I use that with the dates/times I am working with?
I'm using brinkster, and am trying to change the Time Zone, 5 hours forward to London UK time, and also, reduce the rime by 7 minutes, as their server is off by that many minutes - I asked them to change it, the said no, it's correct, but I synchronse time with time.windows.com and the time was 7 minutes behind from brinkster.
You may think I'm being a pain, but on my site, the products I add are time dependent and people need to know the exact time. the code is below, of course, with everything I try, I get an error, can someone please figure out my mistake. Many thanks + Happy new year every1
Code:
<%=(DateAdd("n",-7,now()))(DateAdd("h",5,now()))%>
I am attempting to solve a date/time formatting issue is
VBScript ASP pages. The ASP pages needs to determine what
time zone the client browser is in and tell a COM object.
The COM object then reads information from a proprietary
file and formats the date/time into the appropriate time
zone and returns the information to the ASP in an XML
form.
My question is how do I determine the client's time Zone
using VBScript in ASP pages?
I was wondering if anyone knew how to determine how to determine the
client's time zone from within an ASP page?
how to either change the time zone or add three hours to the following?
View Replies View Relatedi can use this to change the time on my site by +2 hours:
offsetminutes=120
thetime=dateadd("n", offsetminutes, time())
but, say it's 11pm.. the script above will make it 1am, but will the date in " date() " go ahead one day too?
the other thing i could do is this:
offsetminutes=120
thetime=dateadd("n", offsetminutes, now())
using now() instead of time(). but then when i want to print " thetime " onto a page, ill get something like "7/11/2005, 5:10:13 PM". how could i then separate the new date from the new time and print them to a page separately?