Jump to content

realguru

Member
  • Posts

    8
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    India

About realguru

realguru's Achievements

0

Reputation

  1. Hi Junkie I couldnt Attach a File to my Email When I tested it. Although My Code is supposed to be Right.
  2. I am Trying to Attach a File from My local Machine to my Own Email Client which I created for an Online Project. In this site the User Should attach their Resumes and Send. I am Using CDONTS Component for the Mail and I am Using <% Dim MailMe Set MailMe = Server.CreateObject("CDONTS.NewMail") MailMe.From = UserEmailid MailMe.To = EmailME MailMe.Subject = MailSubject ...... ....... .... MailMe.AttachFile "C:\Resume.doc" MailMe.Send set MailMe=nothing %> The problem is it is giving Error at the AttachFile Line Thank you
  3. I am Trying to Attach a File from My local Machine to my Own Email Client which I created for an Online Project. In this site the User Should attach their Resumes and Send. I am Using CDONTS Component for the Mail and I am Using <% Dim MailMe Set MailMe = Server.CreateObject("CDONTS.NewMail") MailMe.From = UserEmailid MailMe.To = EmailME MailMe.Subject = MailSubject ...... ....... .... MailMe.AttachFile "C:\Resume.doc" MailMe.Send set MailMe=nothing %> The problem is it is giving Error at the AttachFile Line Thank you
  4. When you write in a textarea this comes as a single Value in need to seperate them and then Write one by one Like Hi Rajesh then Hi Ram etc.
  5. I am having set of Names From a Form Posted to ASP file like this Rajesh, James, Joseph, Raman, Raheem I have to seperate them and use HTML goes like this ----- <form method =post action=submitnames.asp> <textarea name=names></textarea> <input type=submit name=submit> ASP goes like this----- names=request.Form(names) Response.write("Hi"&names) Anybody with answer
  6. A Client has given me Datas in MySQL Database, He wants me to access this data base for his Web site which uses ASP. IS it Possible to get datas from MySQL through ASP. if yes What is the Driver, I should install for MySQL, where will I get it. If No, is it possible to import all these datas to MS-SQL Server? If yes HOW
  7. Well Friends, let me tell you why I want to do this, Just open any Form and Press ALT-TAB Keys Simultaneously. You will Come to One More Window Right All that I need is I dont want user to Pass from MY WINDOW to other window unless he closes it, I know it is Possible and also Done in many Sites.
  8. Hi, I am working on a Project in which the User should not Switch on to any toher application other than mine. I want to disable certain keys like Windows Key and Alt-Tab Combination key. How would I make it Possible. The Code can be in Java or Java Script.
×
×
  • Create New...