$("#hdTest").val();
Tuesday, 17 March 2015
Thursday, 5 March 2015
Select Day from Date in Sql Server
SELECT Day('2015-03-05 23:15:36.710')
Select Month from Date in Sql Server
select MONTH('2015-03-05 23:15:36.710')
-- Result: 3
Select Year from Date in Sql Server
SELECT YEAR('2015-03-05 23:15:36.710')
-- Result: 2015
Monday, 2 March 2015
Drop Down Data Binding in Asp.Net
DataTable data = GetData();
ddrLocationList.DataSource = data;
ddrLocationList.DataTextField = "Name";
ddrLocationList.DataValueField = "ID";
ddrLocationList.DataBind();
Subscribe to:
Comments (Atom)