My experiences in .NET
Sunday, February 5, 2017
Media query
›
(Shamelessly copying the content as-is) https://msdn.microsoft.com/en-us/library/ms534161(v=vs.85).aspx Property values Type: Strin...
1 comment:
Bootstrap container vs container-fluid
›
I am Lazy :-) Just copy & paste from Bootstrap official website.. he he he.. Containers Bootstrap requires a containing element...
Bootstrap - col-[xs/sm/md/lg]
›
I always get confused if we need to specify col-xs, col-sm, col-md and col-lg classes for a column in bootstrap. If we specify col-xs it ge...
Monday, April 25, 2016
Visual Studio 2015
›
At last.. after several years of gap, I am into blogging again. What was I doing all these years, doing same job, same work :-) Started...
Wednesday, June 26, 2013
sql server stuff
›
CREATE TABLE EMPLOYEE ( EMPID INT IDENTITY(1,1), EMPNAME VARCHAR(500) ) ALTER TABLE EMPLOYEE ADD CONSTRAINT PK_EMPLOYEE_EMPID PRIMARY KEY ...
Friday, January 20, 2012
Exception handling difference between .NET Framework 1.1 and 2.0
›
What happens if there is an application exception thrown and is not caught by application. In .NET framework 1.1, it impacts the current a...
4 comments:
Tuesday, March 15, 2011
Serialize a class to XML
›
public string GetXML() { XmlSerializer objXMLSerializer = null; StringWriter objStrW = null; // String wr...
›
Home
View web version