Hi
I am looking to save only the date where the user add his product in my application but in the product detail page the lable its show the time as well which i dont want, so can you advice me what i should do,
the code below where the user add his product
protected void addadsbtn_Click(object sender, EventArgs e)
{
var user = Session["UsrNme"];
var location = Session["location"];
if (Catedrdoads.SelectedValue != "Cars")
{
//If so then show the panel
carpanel.Visible = true;
}
else
{
//If not then hide the panel
carpanel.Visible = false;
}
Guid newGUID = Guid.NewGuid();
SqlConnection cn = new SqlConnection(sc);
SqlCommand cmd = new SqlCommand();
strin ...
Go to the complete details ...