Search the web
Sign In
New User? Sign Up
AspClassicAnyQuestionIsOk
? 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 4964 - 4993 of 8655   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
4964
Hi all, i have problem in mail sending.please help me. i used CDONTS for mail.COde is runing successfully.my pC is also connected through internet.My oprating...
asif mehdi
asif_mehdi
Offline Send Email
Sep 1, 2004
8:55 am
4965
I need to limit the nuber of characters to be typed into a textarea. Is there any solution to this problem? thanks Valter...
Valter
valt76
Online Now Send Email
Sep 1, 2004
4:33 pm
4966
hi pls you install the exchange server . if you not install the exchange server pls configation of mail icon. mail icon have a contral panal. OK ... ...
GHULAM QADIR
gqali
Offline Send Email
Sep 2, 2004
4:36 am
4967
You need to do it using client-side javascript. Try this :- http://javascript.internet.com/forms/limit-textarea.html Dan www.diado.com ... From: Valter...
Dan Powderhill
danaspelite
Offline Send Email
Sep 2, 2004
8:35 am
4968
it works pretty well, thank you very much :-)...
Valter
valt76
Online Now Send Email
Sep 2, 2004
9:18 am
4969
why not use the Maxlength = 60 Like the example below. <textarea rows="3" name="textareaname" STYLE="margin:0; background:#E4E4E4; font-weight:bold;...
pfrenchy
Offline Send Email
Sep 2, 2004
3:04 pm
4970
The maxlength attribute only applies to input elements, not textarea elements. Dan www.diado.com ... From: pfrenchy [mailto:pfrenchy@...] Sent: 02...
Dan Powderhill
danaspelite
Offline Send Email
Sep 2, 2004
3:10 pm
4971
I have created an ASP application which collects data and stores it in an Access database on the server and generates reports that are viewable on a web site....
Joel Elias
joelhe
Offline Send Email
Sep 2, 2004
6:40 pm
4972
Joel, One method that I have employed to create files that Excel can open is to dynamically generate a flat txt file that is either comma-delimited or...
Phillip C Goff
pcgoff01
Offline Send Email
Sep 2, 2004
6:49 pm
4973
Thanks Phil, That is what I am doing now. The customer does not want to have to deal with that and wants files he can open directly. Joel ... From: Phillip C...
Joel Elias
joelhe
Offline Send Email
Sep 2, 2004
7:15 pm
4974
I generate comma delimited files (.csv) from a database a lot and whenever I link to the files on the web server, they open in Excel when I click on them. Bob...
bobfilipiak
Offline Send Email
Sep 2, 2004
7:26 pm
4975
Try this then: It's a freeware component called "ASP Report Wizard". It can supposedly save generated reports out as an Excel file. Blurb: Quickly transform...
Phillip C Goff
pcgoff01
Offline Send Email
Sep 2, 2004
7:28 pm
4976
i See ur problem pls try this : - http://www.asp101.com/samples/xl.asp click the above link for ur problem it may be useful best regard S.K.Mohan Kumar...
mohan kumar
mohan_sktrt
Offline Send Email
Sep 3, 2004
4:54 am
4977
Hi, I have seen lots of posts recently on how to create Excel pages in HTML and was wondering if there is a similar way that you can create Outlook items from...
whelkwhelk
Offline Send Email
Sep 3, 2004
8:33 am
4978
I am trying to fit into the same page two files .inc containing some VBSCRIPT and a connection to the same DB. The system is returning an error: Redefined name...
Valter
valt76
Online Now Send Email
Sep 3, 2004
10:57 am
4979
Sounds like you've got the line "Dim outpstDB" in both files, so it's dimming it on the first occurance and then coming to the second occurance and wondering...
Dan Powderhill
danaspelite
Offline Send Email
Sep 3, 2004
11:00 am
4980
thanks for you fast reply, so, are you suggesting me to cut from the second .inc file all the Dim stuff? Thank you Valter...
Valter
valt76
Online Now Send Email
Sep 3, 2004
11:04 am
4981
Not sure if this has been suggested. Just generate an html table as the excel results, change the content type to excel (similar to streaming an image through...
Jeffrey Schoolcraft
m005838
Offline Send Email
Sep 3, 2004
11:08 am
4982
You need to look through both files and find out what's being dimmed twice and make sure they're only dimmed once at the top of the file which gets included...
Dan Powderhill
danaspelite
Offline Send Email
Sep 3, 2004
11:10 am
4983
I have written a simple ASP set to insert, update and delete news items. how can I add images to this, so each Item has an image...
blackbrit_1999
Offline Send Email
Sep 3, 2004
1:47 pm
4984
First of all you need to upload the image to the server... either using something like Persits ASPUpload component ( www.aspupload.com) or a pure ASP upload...
Dan Powderhill
danaspelite
Offline Send Email
Sep 3, 2004
2:24 pm
4985
first and foremost I like to thank you all guys for your help. Now, this is another trouble I 've encountered. I am using On Error Resume Next to avoid user to...
Valter
valt76
Online Now Send Email
Sep 6, 2004
9:05 am
4986
I use: If Err.Description = "" Then Perhaps if you use greater than: if Err.number > 0 then ... _______________________________ Do you Yahoo!? Win 1 of 4,000...
Michael Brinkley
mbrink1111
Online Now Send Email
Sep 6, 2004
12:39 pm
4987
I tend to use if err.number > 0. There's always there danger that there will be no error description in the err.description property, especially if code /...
Dan Powderhill
danaspelite
Offline Send Email
Sep 6, 2004
12:54 pm
4988
Actually I did try to use Err.number <> 0 but it didnt work as well Thanks Valter...
Valter
valt76
Online Now Send Email
Sep 6, 2004
2:02 pm
4989
Can you post a little more of your code? If you're using on error resume next and check whether err.number <> 0 then you should be able to trap any errors. Dan...
Dan Powderhill
danaspelite
Offline Send Email
Sep 6, 2004
2:06 pm
4990
Here is some of my code: <%@ LANGUAGE = "VBSCRIPT" %> <% On Error Resume Next p_mese = Request.Form("p_mese") . .'Here coming others Request.Form . %> <% 'Here...
Valter
valt76
Online Now Send Email
Sep 6, 2004
3:34 pm
4991
Hi Valter, Looking at your code, should the "Sorry!" be output when there's an error? At the moment it'll be output when there isn't an error. You have what...
Dan Powderhill
danaspelite
Offline Send Email
Sep 7, 2004
8:19 am
4992
thanks for your help....yet I can't make this script work. I do really believe that my mistake is on where I am writing the if Err.number coz it isnt...
Valter
valt76
Online Now Send Email
Sep 7, 2004
9:05 am
4993
I forgot to say that when it's supposed to show Sorry!! the page is blank instead and it works fine when you enter the right request. Valter...
Valter
valt76
Online Now Send Email
Sep 7, 2004
9:14 am
Messages 4964 - 4993 of 8655   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