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...
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 ... ...
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...
why not use the Maxlength = 60 Like the example below. <textarea rows="3" name="textareaname" STYLE="margin:0; background:#E4E4E4; font-weight:bold;...
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, 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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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 /...
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...
Here is some of my code: <%@ LANGUAGE = "VBSCRIPT" %> <% On Error Resume Next p_mese = Request.Form("p_mese") . .'Here coming others Request.Form . %> <% 'Here...
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...
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...