Click here to Skip to main content
15,907,687 members

Comments by M.Saied (Top 12 by date)

M.Saied 4-Nov-13 15:01pm View    
use this http://dhtmlx.com/docs/products/dhtmlxScheduler/index.shtml
M.Saied 30-Oct-13 13:20pm View    
Deleted
what datasource you are useing
M.Saied 27-May-13 7:17am View    
you can add sampel code under your save button like this

protected void SaveButton_Click(object sender, EventArgs e)
{
SqlConnection ConnectionName = new SqlConnection();
ConnectionName.ConnectionString = WebConfigurationManager.ConnectionStrings["ConnectionStringName"].ConnectionString;
ConnectionName.Open();

SqlCommand comm = new SqlCommand();
comm.Connection = ConnectionName;
comm.Parameters.Clear();
comm.CommandType = CommandType.StoredProcedure;
comm.CommandText = "StoredProcedureName";

comm.Parameters.AddWithValue("action", "actionName");
comm.Parameters.AddWithValue("emp_name", TextBox1.Text);
comm.Parameters.AddWithValue("emp_phno", TextBox2.Text);

comm.ExecuteNonQuery();
ConnectionName.Close();
ResaultLabel.Text = "Save Successfully";
}
M.Saied 9-May-13 4:48am View    
use GETDATE()
M.Saied 7-May-13 0:59am View    
then do this http://www.codeproject.com/Articles/32210/Deployment-of-a-Website-on-IIS