I'm not sure what date format your working with. But generally, this will work: SELECT * FROM tblName WHERE dateColName >= Date() Date() will return the...
Eric Kaiser
sunjournal@...
Sep 2, 2001 12:14 am
1858
Hi, Not specifically DU related ... but is anyone else experiencing problems with Internet Explorer 6 not displaying images? I'm running the final release of...
Tim Thorburn
webadmin@...
Sep 3, 2001 4:18 am
1859
Just ventured into the world of UltraDev, and have run into the above error when trying to add dynmic data to a web page. What does it mean? What objects are...
ajewell@...
Sep 3, 2001 7:00 am
1860
... above ... error ... to...
ajewell@...
Sep 3, 2001 7:28 am
1861
Hello all, We are using Jakarta Tomcat 3.2.2 and SQL server. I have got a problem with deleting records. From a delete form I delete a record. The records gets...
t.romeyn@...
Sep 3, 2001 3:07 pm
1862
Hi. I'm totally new to ultradev and just recently learned that it can do a lot of asp scripting for me. I am attempting to make a search form for a database...
trench44@...
Sep 4, 2001 5:11 pm
1863
use Netscape 6.1 :) ... _________________________________________________________________ Get your FREE download of MSN Explorer at...
David Nickel
dnickel1901@...
Sep 4, 2001 6:05 pm
1864
So after I created this website, it dawned on me that maybe alt tags were a good idea. Is there a way to update all pages at once?...
gclemmer@...
Sep 5, 2001 3:36 pm
1865
... Yes, in the find and replace. Change Search for to Specific tag and change attribute, or just add the whole tag. But, the whole purpose of Alt tags is to...
John Graham
johndgraham@...
Sep 5, 2001 4:22 pm
1866
I have a form that when the user enters data into the first textbox, the rest of the textboxes are automatically filled in based on looking up data in a table...
Chris
mdgq@...
Sep 6, 2001 2:27 am
1867
I've used the behavoir to do a pop up window with an image, but it's grayed out if I try to do it from a link. Is there an extension out there that you can do...
Eric Kaiser
sunjournal@...
Sep 6, 2001 2:43 pm
1868
Here's what I've been doing: Highlight the text, create a standard link to the htm page for the pop-up. Then you can select the behavior as usual, specify your...
Fiona Dudley
fdudley@...
Sep 6, 2001 5:13 pm
1869
I'm not quite with you on this. The Open Browser Window behaviour works best on the <a> tag, and it is unpredictable on an <image> tag. Does it become ...
Philip Osborne
philip.osborne1@...
Sep 6, 2001 8:15 pm
1870
An easy answer just using your palletes. HIghlite your text, type in # in the link field. This creates a catchall href. Then go to your behavior palette and do...
Swerver
swerver@...
Sep 6, 2001 8:50 pm
1871
I've experience just the opposite. No problems using an image as a link, just click on it, choose the behavior and I'm good to go. When I try to use a text...
Eric Kaiser
sunjournal@...
Sep 6, 2001 11:10 pm
1872
Thanks, I will give that a shot! ... _________________________________________________________________ Get your FREE download of MSN Explorer at...
Eric Kaiser
sunjournal@...
Sep 6, 2001 11:11 pm
1873
my configuration: w2k + asp + access2k i have to display some records: insertdate1 - title1 insertdate2 - title2 insertdate3 - title3 insertdate4 - title4 & so...
Clarus The Dog Cow
clarusthedogcow@...
Sep 8, 2001 2:58 pm
1874
Here is a block of code I use the display records that have been submitted the past 72 hours: SELECT * FROM dbo.Table1, dbo.Table2 WHERE Table1.Slug =...
Eric Kaiser
sunjournal@...
Sep 8, 2001 3:09 pm
1875
Hi, you can use this query: SELECT Yourtable.insertdate, Yourtable.otherfields, .... FROM Yourtable WHERE (((Yourtable.Insertdate)>Now()-7)); Then use the...
Christian Hittinger
hittinger@...
Sep 8, 2001 4:24 pm
1876
I need help finding a way to track IP's in a yahoo club..PLEASE...
mome23kjnc@...
Sep 9, 2001 8:55 pm
1877
Hi, I've asked this question before with little response - so I'll ask it again. Has anyone else had any troubles using IE6 (final release) and displaying ...
Tim Thorburn
webadmin@...
Sep 10, 2001 4:13 am
1878
I have used IE6 to access the Macromedia site running on WinXP Pro RC2, Win98, Win2000 Pro and Win2000 Server, both with SP2. No problems. No problems with any...
Lee Stone
lstone@...
Sep 10, 2001 12:30 pm
1879
Can anyone tell me how I can get an HTML page to load up automatically from a cd? I'v created an autorun.inf file on the root of the CD and tried the following...
Gilgamesh
ekalb_s@...
Sep 10, 2001 2:34 pm
1880
Blake, The autorun feature of Microsoft Windows can only run programs. It cannot display HTML pages. I was doing some searching and found this site...I think...
Ron McNeely
rmcneely@...
Sep 10, 2001 3:42 pm
1881
From an ASP page I wish to load a Word Document with a macro contained within it. When I load it into the browser, it will not perform all of the macro as it...
voyager@...
Sep 10, 2001 3:48 pm
1882
to stop the background page reloading, put another anchor on the page near the link and name it in hte link. ...
Thayne Saiger
tsaiger@...
Sep 13, 2001 9:53 am
1883
hi people how can i get a random record? TIA...
Clarus The Dog Cow
clarusthedogcow@...
Sep 15, 2001 12:08 pm
1884
Try this page http://www.aspfaqs.com/webtech/072799-1.shtml It should be what you require Leighton ... From: "Clarus The Dog Cow" <clarusthedogcow@...> ...
Voyager
voyager@...
Sep 15, 2001 3:46 pm
1885
Hi Tia I use Jules extension at http://www.charon.co.uk/Extensions_UD4.asp as its easy. Just watch the note re Cursor settings. ... From: Clarus The Dog Cow...
Philip Osborne
philip.osborne1@...
Sep 15, 2001 7:23 pm
1886
Hi Tia, use this: rs = select * from yourdatabase 'Number of records in your db HighestValue = rs.count 'For Example LowestValue = 1 'Create a Random Number ...