Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

active-server-pages · Active Server Pages Developers' List

The Yahoo! Groups Product Blog

Check it out!

Group Information

? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

Advanced
Messages Help
Messages 10816 - 10845 of 12478   Newest  |  < Newer  |  Older >  |  Oldest
Messages: Simplify | Expand Author Sort by Date v
10845 Dan Powderhill
danaspelite Send Email
Aug 10, 2005
8:23 am
I don't believe it does bypass the original problem. The original problem was only the first word being displayed in the alt attribute. This was caused by the...
10844 madorick@...
madorick Send Email
Aug 9, 2005
7:37 pm
YOu can also use the HTML "e statement ie; Response.Write "<img src=" & "e & "orchidsgold/" & rs("pic_name") & "e & " alt=" & "e &...
10843 Ben Sauer
bensauerdupl... Send Email
Aug 9, 2005
6:02 pm
All of which bypasses your original problem, post the code generating the statement and the generated html if you want help. If you just want to fix it...
10842 Chris Hagwood
chris_hagwood Send Email
Aug 9, 2005
11:52 am
... I've had good success with ' instead of " so far. Of course, if any of the data in the recordset contains a ', then it will need to be scrubbed. [Non-text...
10841 Dan Powderhill
danaspelite Send Email
Aug 9, 2005
10:39 am
Or an easier way than using chr(), this :- Response.write "<img src=""orchidsgold/" & rs("pic_name") & """ alt=""" & rs("desc") & """>" Which escapes the...
10840 Shawn K. Hall
shawn_ra Send Email
Aug 9, 2005
12:26 am
Hi Russ, ... You could create a client-side active-x that has compression abilities. There's some sample vb code for using the free info-zip libraries at ...
10839 Dian D. Chapman
dianchapman Send Email
Aug 8, 2005
10:40 pm
Very cool...thanks! Dian ~ ... From: active-server-pages@yahoogroups.com [mailto:active-server-pages@yahoogroups.com] On Behalf Of Paul Manzotti Sent: Monday,...
10838 Paul Manzotti
heronoseven Send Email
Aug 8, 2005
10:07 pm
... If you want some arrays code... ;-) ' **************************** ' * DECLARE ALL THINGS ARRAY * ' **************************** dim arrParts...
10837 soren.j.winslow@...
sorenwinslow Send Email
Aug 8, 2005
10:04 pm
Try this..... Response.Write "<img src=" & chr(34) & "orchidsgold/" & rs("pic_name") & chr(34) & " alt=" & chr(34) & Server.HTMLEncode(rs("desc")) & chr(34) & ...
10836 Darth Mikey D
darth_mikeyd Send Email
Aug 8, 2005
9:55 pm
I am trying to populate an images alt tag with info from a database, but when I do it, it just displays the first word, not the entire sentence. I tried...
10835 Dian D. Chapman
dianchapman Send Email
Aug 8, 2005
9:53 pm
Thanks for that, Paul. I did actually find the GetRows code and was messing with it, but was confused from the example I had and finally tossed up my hands and...
10834 zerokoo149 Send Email Aug 8, 2005
8:34 pm
I have a client who needs to upload 3 dbf files to update their website. The only problem is that they are 10mb, and they have a slow dsl connection. When I...
10833 Paul Manzotti
heronoseven Send Email
Aug 8, 2005
8:29 pm
... If you want to have a page with a number of pictures on it, in the SQL order by picNum, then loop through the recordset (the usual proviso that you should...
10832 Dian D. Chapman
dianchapman Send Email
Aug 8, 2005
5:22 am
Thanks. That's the way I've been doing it (before and now for this page)...but I just thought I'd check to see if there is some better/more efficient way to do...
10831 Shawn K. Hall
shawn_ra Send Email
Aug 8, 2005
5:09 am
Hi Dian, ... The easy way would be to filter the results in the SELECT statement. "select comment where id = n" Regards, Shawn K. Hall ...
10830 Dian D. Chapman
dianchapman Send Email
Aug 7, 2005
11:38 pm
Hi folks... I'm trying to create a page for my sis to so can add captions to pictures, without me doing the work for her. The DB will contain one caption for...
10829 madorick@...
madorick Send Email
Aug 3, 2005
12:38 pm
I know there is no real validation on this yet. I just wanted to get the function to work. Now I know it will work and if it stops I know where to go (the...
10828 Bob Filipiak
bobfilipiak Send Email
Aug 3, 2005
11:49 am
Using your code I can put a blank in your weight field and the checkbox will get checked. ... From: "Madòrick" <madorick@...> To:...
10827 David Smart
smartware_co... Send Email
Aug 3, 2005
11:21 am
weightID and starID were the parameters of the function checkWeight. The quoted strings were in the call to checkWeight. Dave S ... From: Dan Powderhill To:...
10826 Madòrick
madorick Send Email
Aug 3, 2005
2:01 am
Thanks everyone, I got this working. It's pretty slick. This is to prevent entry errors. Here is what I got working: <SCRIPT language="JavaScript"...
10825 Alex Clough
alex_blueparrot Send Email
Aug 2, 2005
5:01 pm
Just a quick question... Does anyone know whether it's possible to control and update the source parameters for broadcast streams on Windows Media Services? I...
10824 Dan Powderhill
danaspelite Send Email
Aug 2, 2005
2:22 pm
I can't say I've tried passing getElementById an unquoted parameter. If it wasn't quoted then by the nature of Javascript it'd need to be a variable, constant...
10823 David Smart
smartware_co... Send Email
Aug 2, 2005
1:07 pm
No you don't. Dave S ... From: Dan Powderhill To: active-server-pages@yahoogroups.com Sent: Tuesday, August 02, 2005 6:06 PM Subject: RE: [ASP] Updating a...
10822 David Smart
smartware_co... Send Email
Aug 2, 2005
1:07 pm
The value true does not have a capital T. Star.checked = true; Dave S ... From: Madòrick To: active-server-pages@yahoogroups.com Sent: Tuesday, August 02,...
10821 Bob Filipiak
bobfilipiak Send Email
Aug 2, 2005
12:50 pm
Try this: <SCRIPT language="JavaScript" type="text/JavaScript"> function checkWeight () { if(document.forms(0).Weight.Value != ""){ ...
10820 Mills, Andy R. (Regen...
mtdewisgreen Send Email
Aug 2, 2005
11:38 am
What exactly are you trying to accomplish? You can use a hyperlink directly to the file: and Excel will open the file. If this is not the solution you are...
10819 great1der Send Email Aug 2, 2005
8:44 am
hi all i have an excel file of 387KB containg 8 columns and about 4000 rows. i want to put it on a webpage. i do use Frontage and sometimes Publisher. cut &...
10818 Dan Powderhill
danaspelite Send Email
Aug 2, 2005
8:12 am
You need quotes around WeightID and StarID. Dan ... From: active-server-pages@yahoogroups.com [mailto:active-server-pages@yahoogroups.com] On Behalf Of...
10817 Madòrick
madorick Send Email
Aug 1, 2005
11:44 pm
I really appreciate all of the help with this problem. I tried the code suggested, it still is not working. I'm not getting an error just not updating the...
10816 M Kamran Adam
mkamranadam Send Email
Aug 1, 2005
8:37 am
Dear Gibbon M. P. Tamba, Sure it is possible, and from my experience there are three ways of doing it. First, by using JavaScript. You can go for this option...
Messages 10816 - 10845 of 12478   Newest  |  < Newer  |  Older >  |  Oldest
Add to My Yahoo!      XML What's This?

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