Search

You searched for the word(s): userid:49884

Matching Posts

  • Re: how to automaticly perform an action on the first of each month?

    see if this article helps http://www.codeproject.com/KB/aspnet/ASPNETService.aspx
    Posted to Getting Started (Forum) by uncleb on 10/4/2008
  • Re: How to send mails automatically in ASP.NET or C#.NET?

    see if this helps... http://www.codeproject.com/KB/aspnet/ASPNETService.aspx
    Posted to Getting Started (Forum) by uncleb on 6/27/2008
  • Re: How to work with Schedule Tasks

    this article might be a good start... http://www.codeproject.com/KB/aspnet/ASPNETService.aspx
    Posted to Getting Started (Forum) by uncleb on 6/27/2008
  • Re: Contact Form

    i use a try catch like this - though you may want to do more then display the error ( if there is one) Try smtp.Send(mail) Response.Redirect("~/thanks.aspx") Catch ex As Exception Label3.Text = ex.Message.ToString End Try
    Posted to Getting Started (Forum) by uncleb on 6/24/2008
  • Re: Installing a server and a mail server

    you will need windows 2000, 2003, or 2008 server. Asp.Net is a module (of sorts) for IIS IIS is a FREE component of windows Server operating systems. IIS also includes a SMTP server that you can configure to send mail - the easiest way is to configure your ISP as a smart host to relay through. you can download a trial version of server 2008 ( 2003 was also available) you can also download a trial version that can be used with Microsoft VirtualPC or VMWare player.... http://www.microsoft.com/windows
    Posted to Getting Started (Forum) by uncleb on 6/24/2008
  • Re: Can't send SMTP to all emails

    I remember when I was using my IIS to send mail - There was a few domains I couldn't send to. the problem for me was that my IIS was not a registered mail server - no reverese dns lookup or pointer record, etc... first thing I would try is setup smart relaying in the IIS SMTP service and turn off "send directly to recipient" or something like that. You will need to use your ISP as a smart host. If it works, then you know its a DNS / SPAM prevention problem. Just use the ISP SMTP as
    Posted to Getting Started (Forum) by uncleb on 6/18/2008
  • Re: Email from dedicated GoDaddy server

    check out this GoDaddy help page http://help.godaddy.com/article/122 try switching the smtp host to k2smtpout.secure server .net . - according to the help page, they already have this configured on the server ( using PLESK ?) her is my code that works on shared hosting account Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) 'create the mail message Dim mail As New MailMessage() 'set the addresses mail.From = New MailAddress("website@parligroup.com"
    Posted to Getting Started (Forum) by uncleb on 6/17/2008
  • Re: Email from dedicated GoDaddy server

    you shouldn't have to do all that. Just set the the SMTP setting ( in web.config or in code.. not network delivery) Dim smtp As New SmtpClient("relay-hosting.secureserver.net") relay-hosting.secureserver.net is the host used for relaying from GoDaddy sites. Should work for your dedicated host as well. If not, GoDaddy should be able to tell you what you need to do.
    Posted to Getting Started (Forum) by uncleb on 6/17/2008
  • Re: datetime creating problem

    for service on hosted apps http://www.codeproject.com/KB/aspnet/ASPNETService.aspx
    Posted to Getting Started (Forum) by uncleb on 6/11/2008
  • Re: code built in vb form to aspx?

    don't know it it was a typo - but you need to put the class stuff between " Public Class UserNameInfo" and "end class" you can't use a msgbox in a web page. with that in mind, you can't copy and paste to create a web page from that windows form. some things ( i.e. msgbox) don't exist on the web, and some web things don't exist in windows forms. instead of a msgbox, use a label or a javascript alert i.e. ' Create an instance of the class. Dim user As New
    Posted to Getting Started (Forum) by uncleb on 6/11/2008
Page 1 of 187 (1863 items) 1 2 3 4 5 Next > ... Last »