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...
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...
You need quotes around WeightID and StarID. Dan ... From: active-server-pages@yahoogroups.com [mailto:active-server-pages@yahoogroups.com] On Behalf Of...
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 &...
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...
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,...
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...
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...
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...
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:...
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...
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...
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...
... 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...
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...
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...
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...
Very cool...thanks! Dian ~ ... From: active-server-pages@yahoogroups.com [mailto:active-server-pages@yahoogroups.com] On Behalf Of Paul Manzotti Sent: Monday,...
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 ...
Or an easier way than using chr(), this :- Response.write "<img src=""orchidsgold/" & rs("pic_name") & """ alt=""" & rs("desc") & """>" Which escapes the...
... 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...
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...
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...