Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
G

ganeshkuppuswamy

@ganeshkuppuswamy
About
Posts
6
Topics
1
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • problem with date
    G ganeshkuppuswamy

    Fetch the string value and using pares method as coded below you can convert string to date datatype vb Code Dim s As String = TextBox1.Text Dim d As Date = Date.Parse(s) Response.Write(d)

    ganeshk

    ASP.NET help csharp asp-net database tools

  • Is it required to open and close the data connection for every database operation?
    G ganeshkuppuswamy

    you are using asp.net(c# or vb) coding language ,Whatever may be if you are asp.net the you can use webconfig file to declare connection and you can use the single connection where ever you want in your project.

    ganeshk

    ASP.NET question database

  • Send mail with attachment
    G ganeshkuppuswamy

    my coding working fine with gmail ids but it not so in the case of yahoo .When i am using yahoo mail id the below error i am getting System.Net.Mail.SmtpException: The operation has timed out. at System.Net.Mail.SmtpClient.Send(MailMessage message)

    ganeshk

    ASP.NET csharp asp-net design security help

  • problem with date
    G ganeshkuppuswamy

    try to use convert function to convert string to datatime format before saving to database

    ganeshk

    ASP.NET help csharp asp-net database tools

  • Send mail with attachment
    G ganeshkuppuswamy

    can you help me ,how to set email server for yahoo mail

    ganeshk

    ASP.NET csharp asp-net design security help

  • Send mail with attachment
    G ganeshkuppuswamy

    In ASP.NET using C# code i am able to send mail from only gmail mail id . But i am unable to send mail from other mail ids like yahoo,zapak . I used below code to send mail . analyze the code and help me to solve using System; using System.Data; using System.Net; using System.Net.Mail; using System.Configuration; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Web.UI.HtmlControls; using System.IO; public partial class _Default : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { } protected void Send_Click(object sender, EventArgs e) { MailMessage me = new MailMessage(txt_from.Text, txt_to.Text, txt_subject.Text, txt_bodyMessage.Text); SmtpClient client = new SmtpClient(txt_mailServername.Text); client.Credentials = CredentialCache.DefaultNetworkCredentials; client.EnableSsl = true; client.Credentials = new NetworkCredential(txt_from.Text, txt_password.Text); client.Send(me); } }

    ganeshk

    ASP.NET csharp asp-net design security help
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups