|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
Stay one step ahead of the competition. Evaluate and give feedback
on some of the hottest web development tools on the market today.
Make your opinion heard! Click
Here
|
|
#1
|
|||
|
|||
|
I will make a asp program to realize file share and access control function..But i don't know how to make it using asp..Maybe use some components??..Any help is welcomed@@!!
![]()
__________________
Being a Code Headman !
|
|
#2
|
||||
|
||||
|
Um, ask a specific question. We aren't going to write a program for you, and you don't really say what problem you're having.
|
|
#3
|
|||
|
|||
|
****OR*****
you can always go here: http://www.rentacoder.com/RentACoder/default.asp Hope this helps! Sincerely Vlince |
|
#4
|
||||
|
||||
|
A decent thread subject might help you too.
__________________
# Jeremy Explain your problem instead of asking how to do what you decided was the solution. |
|
#5
|
|||
|
|||
|
hi! I want to make a source code to realize these function:
a web based mail client, built with Active Sever Pages (ASP). The application is under the hood to provide the mail server communication. User can use it to smtp,pop3 mail.. |
|
#6
|
|||
|
|||
|
Why don't you just use any of a number of free email components? CDONTS/CDOSYS is on nearly all windows servers, or you can get JMail, ASPEmail and more. Why reinvent the wheel?
|
|
#7
|
|||
|
|||
|
How can I send mail and recieve mail from mail server using CDONTS??Plz give me some sample or help..
|
|
#8
|
|||
|
|||
|
I find this code to send mail:
<% Option Explicit Dim objMail Set objMail = Server.CreateObject("CDONTS.NewMail") objMail.From = "friend@somewhere.com" objMail.Subject = "A message TO you" objMail.AttachFile("d:\images\pic.gif") objMail.To = "someone@someplace.com" objMail.Body = "This is the body of the Message" objMail.Send Response.Write("Mail was Sent") 'You must always do this with CDONTS. Set objMail = Nothing %> But i can't find code for checking pop3 mail and recieving mail from mail server.. |
|
#9
|
|||
|
|||
|
There is some code in this article that may be helpful
http://msdn.microsoft.com/library/d...ngcdofornts.asp I know JMail from www.dimac.net has a pop3 control, and controls from www.adminsystem.net also |
|
#10
|
|||
|
|||
|
Thx Doug G!Great Help from u!
But how can i save attachment from mail??It's another difficult problem.. |
![]() |
| Viewing: Dev Shed Forums > Programming Languages - More > ASP Programming > Some body help me!?About a asp code |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|