Hello
I have a problem with my code as it cant get the date from textbox which takes the date from calender, its give me an error message. I have upload a screen record that can show the problem clearly and deliver what i want specifically, please have a look
to below link
https://www.youtube.com/watch?v=ALR4VuJgR_s&feature=youtu.be
protected void insertjobbtn_Click(object sender, EventArgs e)
{
HttpCookie cookie = Request.Cookies.Get("Location");
string Location = string.Empty;
if (Session["UsrNme"] != null && cookie != null)
{
// You know both of these values exist, so grab them
var user = Session["UsrNme"];
Location = cookie.Value;
using (SqlConnection cn = new SqlConnection(s ...
Go to the complete details ...