Sunday, May 18, 2014
SharePoint: Content Query Webpart - OOB, Custom Fields, Custom Style with Table format
http://prafulgoyal.blogspot.com/2013/04/sharepoint-content-query-webpart-oob.html
Wednesday, April 16, 2014
Cassndra
http://www.edureka.in/blog/how-to-open-cqlsh-of-cassandra-installed-on-windows/
Tuesday, April 15, 2014
Tuesday, April 8, 2014
Thursday, March 6, 2014
Get Date/Time from datetime datatype SQL SERVER
To get DatePart of DateTime type
SELECT CONVERT(DATE,GETDATE()) AS DateOnly
To get Time part in
SELECT CONVERT(TIME,GETDATE()) AS HourMinuteSeconds;
SELECT convert(varchar(8),GETDATE(), 108)
SELECT CONVERT(DATE,GETDATE()) AS DateOnly
To get Time part in
SELECT CONVERT(TIME,GETDATE()) AS HourMinuteSeconds;
SELECT convert(varchar(8),GETDATE(), 108)
Thursday, February 6, 2014
Code Collapse and Expand Feature in SQL Server Management Studio 2008
Tuesday, February 4, 2014
Upload file via input control and empty File Collection in request
when we uplaod files via html input control, sometimes we get Empty file collection on server side, i faced this issue in one of my Sharepoint projects and resolved with adding
Page.Form.Enctype = "multipart/form-data";
in page load.
http://stackoverflow.com/questions/1226612/sharepoint-webpart-upload-file-whitout-using-runat-server
Page.Form.Enctype = "multipart/form-data";
in page load.
http://stackoverflow.com/questions/1226612/sharepoint-webpart-upload-file-whitout-using-runat-server
Subscribe to:
Posts (Atom)