Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > ASP General > Changing Session.LCID in a hyperlink

Reply
Thread Tools

Changing Session.LCID in a hyperlink

 
 
Rob
Guest
Posts: n/a
 
      05-03-2004
Hi all,

Is it possible to change the Session.LCID in a hyperlink?
My problem is I'm calling a Date from a database to use as a querystring in
the hyperlink but I also need to display the date as output from the
hyperlink.
I need to have to querystring in Session.LCID = 1033 and the display date in
Session.LCID = 2057.

Coding :-

Session.LCID = 1033
<a href=""applybankholiday.asp?date=" & rshelpdesk("date") & """>" &
rshelpdesk("date") & "</a></font></td>")

Whereever I put Session.LCID = 2057 I either get errors saying its in the
wrong place or It displays false. Tried the following that gives the false.

Session.LCID = 1033
<a href=""applybankholiday.asp?date=" & rshelpdesk("date") & """>" &
Session.LCID = 2057 & rshelpdesk("date") & "</a></font></td>")


Any ideas?
Many thanks in advance,
Robert


 
Reply With Quote
 
 
 
 
Aaron Bertrand - MVP
Guest
Posts: n/a
 
      05-03-2004
Why are you using Session.LCID at all? How about formatting your date in a
standard, non-ambiguous format???

--
Aaron Bertrand
SQL Server MVP
http://www.aspfaq.com/




"Rob" <> wrote in message
news:c7632o$25n$...
> Hi all,
>
> Is it possible to change the Session.LCID in a hyperlink?
> My problem is I'm calling a Date from a database to use as a querystring

in
> the hyperlink but I also need to display the date as output from the
> hyperlink.
> I need to have to querystring in Session.LCID = 1033 and the display date

in
> Session.LCID = 2057.
>
> Coding :-
>
> Session.LCID = 1033
> <a href=""applybankholiday.asp?date=" & rshelpdesk("date") & """>" &
> rshelpdesk("date") & "</a></font></td>")
>
> Whereever I put Session.LCID = 2057 I either get errors saying its in the
> wrong place or It displays false. Tried the following that gives the

false.
>
> Session.LCID = 1033
> <a href=""applybankholiday.asp?date=" & rshelpdesk("date") & """>" &
> Session.LCID = 2057 & rshelpdesk("date") & "</a></font></td>")
>
>
> Any ideas?
> Many thanks in advance,
> Robert
>
>



 
Reply With Quote
 
 
 
 
Rob
Guest
Posts: n/a
 
      05-03-2004
Could point, although not sure how to. The date is in uk format i.e.
dd/mm/yy in an access database. When I try and do a date range query in asp
it only works if I use the american format mm/dd/yy.
If you know of a way round this or how to do the formatting then I'd be
grateful.

Many thanks,
Robert


"Aaron Bertrand - MVP" <> wrote in message
news:...
> Why are you using Session.LCID at all? How about formatting your date in

a
> standard, non-ambiguous format???
>
> --
> Aaron Bertrand
> SQL Server MVP
> http://www.aspfaq.com/
>
>
>
>
> "Rob" <> wrote in message
> news:c7632o$25n$...
> > Hi all,
> >
> > Is it possible to change the Session.LCID in a hyperlink?
> > My problem is I'm calling a Date from a database to use as a querystring

> in
> > the hyperlink but I also need to display the date as output from the
> > hyperlink.
> > I need to have to querystring in Session.LCID = 1033 and the display

date
> in
> > Session.LCID = 2057.
> >
> > Coding :-
> >
> > Session.LCID = 1033
> > <a href=""applybankholiday.asp?date=" & rshelpdesk("date") & """>" &
> > rshelpdesk("date") & "</a></font></td>")
> >
> > Whereever I put Session.LCID = 2057 I either get errors saying its in

the
> > wrong place or It displays false. Tried the following that gives the

> false.
> >
> > Session.LCID = 1033
> > <a href=""applybankholiday.asp?date=" & rshelpdesk("date") & """>" &
> > Session.LCID = 2057 & rshelpdesk("date") & "</a></font></td>")
> >
> >
> > Any ideas?
> > Many thanks in advance,
> > Robert
> >
> >

>
>



 
Reply With Quote
 
Aaron Bertrand - MVP
Guest
Posts: n/a
 
      05-03-2004
> Could point, although not sure how to. The date is in uk format i.e.
> dd/mm/yy in an access database.


NO! The date is not in any format inside the database. It is merely being
presented to you as such. To pass a standard, non-ambiguous date to Access,
which will never be misinterpreted, use #YYYY-MM-DD#.

http://www.aspfaq.com/2313

> When I try and do a date range query in asp
> it only works if I use the american format mm/dd/yy.


Again, if you are trying to find rows that are >= 20040101 and <= 20040131
try

WHERE dateColumn >= #2004-01-01# AND dateColumn < #2004-02-01#

--
Aaron Bertrand
SQL Server MVP
http://www.aspfaq.com/


 
Reply With Quote
 
roger
Guest
Posts: n/a
 
      05-04-2004

"Rob" <> wrote in message
news:c768vm$mgq$...
> Could point, although not sure how to. The date is in uk format i.e.
> dd/mm/yy in an access database. When I try and do a date range query in

asp
> it only works if I use the american format mm/dd/yy.


Do you mean when using "#" to delimit dates?

I think if you use #01/11/2004# syntax in MS SQL, this will always mean

11th day of January

irrespective of any locale settings.


> <a href=""applybankholiday.asp?date=" & rshelpdesk("date") & """>" &
> rshelpdesk("date") & "</a></font></td>")


How about...

dim d

d = rshelpdesk("date")

"<a href=""applybankholiday.asp?date=" & month(d) & "/" & day(d) & "/" &
year(d) & """>" &
d & "</a></font></td>"

However, I suspect nothing is foolproof for non-US date formats.


--
roger


 
Reply With Quote
 
Aaron Bertrand [MVP]
Guest
Posts: n/a
 
      05-04-2004
> I think if you use #01/11/2004# syntax in MS SQL, this will always mean
>
> 11th day of January
>
> irrespective of any locale settings.


No, this is incorrect on at least two counts.

(1) SQL Server will barf on # as delimiters. Run this in Query Analyzer:



DECLARE @dt SMALLDATETIME
SET @dt = #01/11/2004#



You will get this:



Server: Msg 170, Level 15, State 1, Line 2
Line 2: Incorrect syntax near '#'.



(2) SQL Server will certainly *NOT* always interpret 01/11/2004 as January
11th. Even if you have a US locale and set up SQL Server as US English,
feel free to run this simple repro in Query Analyzer:



SET LANGUAGE FRENCH
GO

SELECT DATENAME(MONTH, '01/11/2004')

SET LANGUAGE ENGLISH
GO



Let us know if you get janvier or novembre!

--
Aaron Bertrand
SQL Server MVP
http://www.aspfaq.com/


 
Reply With Quote
 
roger
Guest
Posts: n/a
 
      05-05-2004
"Aaron Bertrand [MVP]" <> wrote in message
news:...
> > I think if you use #01/11/2004# syntax in MS SQL, this will always mean
> >
> > 11th day of January
> >
> > irrespective of any locale settings.

>
> No, this is incorrect on at least two counts.
>
> (1) SQL Server will barf on # as delimiters. Run this in Query Analyzer:


True... but we were discussing MSAccess.

In that context, "MS SQL" was meant to mean the MS version of SQL included
with Access.


--
roger


 
Reply With Quote
 
Aaron Bertrand [MVP]
Guest
Posts: n/a
 
      05-05-2004
> True... but we were discussing MSAccess.
>
> In that context, "MS SQL" was meant to mean the MS version of SQL included
> with Access.


I think in 99% of all cases, MS SQL will be interpreted as SQL Server...
even if the discussion had previously involved a different platform.

And even with Access, #mm/dd/yyyy# is STILL not a safe format to use. The
only truly safe format to use in Access is #YYYY-MM-DD#


 
Reply With Quote
 
Bob Barrows [MVP]
Guest
Posts: n/a
 
      05-05-2004
roger wrote:
> In that context, "MS SQL" was meant to mean the MS version of SQL
> included with Access.


For future reference, that version is called "JetSQL", due to its use with
the Jet database most commonly used with Access (remember: Access is not the
database. Access is a front-end tool for working with several databases,
including Jet and MSDE).

Also, "MS SQL" will always be interpreted as MS SQL Server. The version of
SQL used by MS SQL Server is called Transact-SQL (often shortened to T-SQL)

Bob Barrows

--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"


 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Changing the width/height when using Hyperlink.ImageUrl Nathan Sokalski ASP .Net 4 06-02-2010 03:24 PM
How to add a hyperlink column to asp.net datagrid - where only one value is a hyperlink davetichenor ASP .Net 1 10-30-2006 02:57 PM
How to add a hyperlink column to asp.net datagrid - where only one value is a hyperlink Dave ASP .Net Datagrid Control 0 10-21-2006 07:48 PM
Changing the width/height when using Hyperlink.ImageUrl Nathan Sokalski ASP .Net Building Controls 1 10-10-2005 10:36 PM
Dynamically Hyperlink and Event Handler for the Hyperlink ? Ken ASP .Net Datagrid Control 1 08-15-2003 11:38 PM



Advertisments