Creation of new Column in Gridview at Runtime

7:35 PM | Comments (0)

out put: Html code: stem.Data.SqlClient; public partial class Default2 : System.Web.UI.Page { SqlConnection scn = new SqlConnection("Data Source=.;Initial Catalog=test;Integrated Security=True;Pooling=False"); protected void Page_Load(object...

Read more

Databound Schedule controls for Project Management

7:26 PM | Comments (0)

Databound Schedule controls for Project Management These are two free controls, ScheduleCalendar and ScheduleGeneral, designed to show scheduled events in the form of...

Read more

Sending Mails using AOSMTPLib

7:12 PM | Comments (0)

Firstly Install ansmptp.exe : Source Code: using AOSMTPLib; AOSMTPLib.MailClass oSmtp = new AOSMTPLib.MailClass(); oSmtp.FromAddr = "chinnamallempati9@gmail.com"; oSmtp.AddRecipient("Support Team", "anveshmallempati9@gmail.com", 0); oSmtp.Subject =...

Read more

Conversion of datetime to 24x7 hour format

7:00 PM | Comments (0)

String militaryTimeFormat = "HH:mm"; String input = DateTime.Now.ToString(militaryTimeFormat); DateTime time = DateTime.ParseExact(input, militaryTimeFormat, null); string militaryTime = "06/07/2013 20:30"; IFormatProvider culture =...

Read more