Creation of new Column in Gridview at Runtime
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...
Databound Schedule controls for Project Management
Databound Schedule controls for Project Management These are two free controls, ScheduleCalendar and ScheduleGeneral, designed to show scheduled events in the form of...
Sending Mails using AOSMTPLib
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 =...
Conversion of datetime to 24x7 hour format
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 =...