i'm trying to display my date value from sql to asp textbox but is showing along with time
in sql data type is date
code as follow in asp
SqlConnection con = new SqlConnection(strcon);
string getdata = "select * from Enquiry where EnquiryID='" + Request.QueryString["EnquiryID"] + "'";
SqlDataAdapter da = new SqlDataAdapter(getdata, con);
DataSet ds = new DataSet();
da.Fill(ds, "temp_view");
if (ds.Tables["temp_view"].Rows.Count > 0)
{
&nbs ...
Go to the complete details ...