TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Chriz L
NA
220
50.6k
Return only date from dataset.
Sep 24 2015 2:40 AM
Hello,
I have a stored procedure that populates dates in SQL Server 2012 (InsDate AS date). When I execute the spoc i get InsDate=2015-06-06 which is the format I need.
I retieve data into my webform using the following code:
SqlCommand command = new SqlCommand("SelectSproc", connection);
command.CommandType = CommandType.StoredProcedure;
SqlDataAdapter adapter = new SqlDataAdapter(command);
DataSet ds = new DataSet();
adapter.Fill(ds);
insDate.Text = ds.Tables[0].Rows[0]["InsDate"].ToString();
Result: insDate.Text= 2015-06-06 12:00:00 am
Why do I get the time part since I'm populating only dates from the SQL? How can I get rid of the time part?
Thank you in advance.
Reply
Answers (
8
)
Microsoft certification
How to define app id and app secret of facebook