Search the web
Sign In
New User? Sign Up
active-server-pages · Active Server Pages Developers' List
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 11833 - 11862 of 12403   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
11833
Hello list Might be slightly off topic, apologies if thats the case, but I am trying to find a way to sort a table by clicking on the table headers. I have...
james_godolphin
Offline Send Email
Oct 1, 2006
7:22 pm
11834
Hi James, ... http://www.workingwith.me.uk/articles/scripting/standardista_table_sorti ng Regards, Shawn K. Hall http://12PointDesign.com/...
Shawn K. Hall
shawn_ra
Online Now Send Email
Oct 1, 2006
9:42 pm
11835
Thanks Shawn, Implemented it, it works, but same problem. Numbers sorting like text so in my column of values it sorts 1, 10, 101, 14,15,3,42 etc etc Any way...
james godolphin
james_godolphin
Offline Send Email
Oct 1, 2006
10:20 pm
11836
Hi James, ... Link? My guess is that your data isn't correctly normalized, making detection of types inaccurate (defaulting to 'as text'), or you neglected to...
Shawn K. Hall
shawn_ra
Online Now Send Email
Oct 1, 2006
10:59 pm
11837
Hi Shawn ... Can you tell me what that means? I have implemented about 3 different examples of sorting code, none of which seem to sort the numbers correctly. ...
james godolphin
james_godolphin
Offline Send Email
Oct 2, 2006
4:34 am
11838
Just thought I would post a follow up to the table sorting problem. The reason why the numerics were not sorting correctly is because the HTML was of the...
james_godolphin
Offline Send Email
Oct 5, 2006
3:43 am
11839
Keep getting this error. I have some pretty basic SQL just selecting some data from an Access database. If I keep the query really simple, it works, add in...
james_godolphin
Offline Send Email
Oct 5, 2006
3:44 am
11840
Can you show us the SQL and the code you are using to execute the query against MS Access? Mark Wills, MSc MIAP http://www.markwills.co.uk ... From:...
mark wills
markrobertwills
Offline Send Email
Oct 5, 2006
7:00 am
11841
strSQL = "SELECT tblX.*, tblY* FROM tblZ INNER JOIN (tblX INNER JOIN tblY ON tblX.X = tblY.X) ON tblZ.Y = tblY.Z WHERE tblX.X=1;" rs.Open strSQL ,...
james_godolphin
Offline Send Email
Oct 5, 2006
7:16 am
11842
Might be blaating here, but it seems like a rights issue, make sure you have writing access to the db folder When you start inner joining, access might need to...
Niels Bieze
nrbieze@...
Send Email
Oct 5, 2006
7:59 am
11843
Hi Niels The 'write' box is ticked in IIS for the database. Is this what you are refering to? Also, if I take out one of the two joins, it works no problem....
james_godolphin
Offline Send Email
Oct 5, 2006
8:07 am
11844
This might be a good starting point: http://www.intermedia.net/support/kb/default.asp?id=646 Mark Mark Wills, MSc MIAP http://www.markwills.co.uk ... From:...
mark wills
markrobertwills
Offline Send Email
Oct 5, 2006
8:23 am
11845
Hi Mark I did use that page as a starting point but it didn't shed any light. Thanks for the link. ... Access ... and it ... other ... storage with ... ...
james_godolphin
Offline Send Email
Oct 5, 2006
8:51 am
11846
Not xactly, check out: http://tutorials.aspfaq.com/8000xxxxx-errors/80004005-errors.html...
Niels Bieze
nrbieze@...
Send Email
Oct 5, 2006
11:35 am
11847
Is this an exact copy of the SQL statement? There is no . in tblY*. A way to get obscure errors is to try to run the query while you have one of the tables...
David Smart
smartware_co...
Offline Send Email
Oct 6, 2006
5:58 am
11848
How many fields does the query return? Is it trying to return a 'table in a table'? Mark ... From: David Smart <smartware@...> To:...
mark wills
markrobertwills
Offline Send Email
Oct 6, 2006
7:57 am
11849
No, sorry, that was a typo. It should read tblY.* The reason tblZ is joined and not referenced as the query works without the reference, but get the error when...
james_godolphin
Offline Send Email
Oct 6, 2006
9:54 am
11850
Only about 6 fields. What do you mean by 'table in a table'? ... 'table in a table'? ... . in tblY*. ... have one of ... design ... you try ... execute far ......
james_godolphin
Offline Send Email
Oct 6, 2006
9:57 am
11851
Thinking about it, I think I had had similar errors when I had fields in my database that were empty (i.e. never had data in them), could this be related? Sure...
mark wills
markrobertwills
Offline Send Email
Oct 6, 2006
10:03 am
11852
Microsoft says it is: http://support.microsoft.com/?kbid=248738 Regards, Dave S ... From: "james_godolphin" <james_godolphin@...> To:...
David Smart
smartware_co...
Offline Send Email
Oct 6, 2006
12:32 pm
11853
Ouch! I didn't know that! Never used CURRENT in a SQL expression before, now i'll have to go and look it up to see what it does ;) Thanks Mark ... From: David...
mark wills
markrobertwills
Offline Send Email
Oct 6, 2006
1:15 pm
11854
Hi can anyone tell me ...is it possible to call a client side function from server side code. i am using classic asp.and vbscript for client side. if yes...
anurag sharma
anurag_3dec
Offline Send Email
Oct 6, 2006
1:16 pm
11855
As far as I know, no, it is not possible. Mark Wills, MSc MIAP http://www.markwills.co.uk ... From: anurag sharma <anurag_3dec@...> To:...
mark wills
markrobertwills
Offline Send Email
Oct 6, 2006
11:11 pm
11856
... Use onload: '// ======================================================== <body onload="yourClientSideFunction(<%=someVariable%>)"> '//...
Shawn K. Hall
shawn_ra
Online Now Send Email
Oct 7, 2006
1:50 am
11857
Shawn, I interpreted his question as calling a routine hosted on a client machine, from the server, after the page has been rendered, in affect, similar to...
mark wills
markrobertwills
Offline Send Email
Oct 7, 2006
10:05 am
11858
Hi Mark, ... I find that if we read too much into their questions we get lost in the technology behind it, espcially when there is obviously already a language...
Shawn K. Hall
shawn_ra
Online Now Send Email
Oct 7, 2006
8:35 pm
11859
Hi James, ... Normalization is causing the data to conform to a consistent pattern. For most tabular (table) data, this includes removing any white space and...
Shawn K. Hall
shawn_ra
Online Now Send Email
Oct 7, 2006
8:51 pm
11860
Hi Shawn Yes it is to display stats for a soccer based Fantasy Football competition giving a high level of analysis for how the players are scoring their...
james_godolphin
Offline Send Email
Oct 9, 2006
12:56 am
11861
Hi, Maybe I'm just tired, but I'm having some major problems with some code, and I can't understand why... it is part of a class which checks form input. I...
Graeme Wilson
gnwilson2001
Offline Send Email
Oct 9, 2006
6:17 pm
11862
Hi Graeme, ... This is a string. In ASP string comparison uses ascii byte value, not numeric value, in effect comparing numeral 5 to asc("2") (=50). One other...
Shawn K. Hall
shawn_ra
Online Now Send Email
Oct 9, 2006
7:16 pm
Messages 11833 - 11862 of 12403   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help