|
|
-
|
|
Be aware when you read XML data from Microsoft SQL Server by using the **SqlDataReader** object or **ExecuteScalar** method of SqlCommand class, the XML in the first column of the first row is truncated at 2,033 characters. To resolve this problem, use ...
|
|
-
|
|
ASP.NET 4 also enables you to configure the characters that are used by the URL character check. When ASP.NET finds an invalid character in the path portion of a URL, it rejects the request and issues an HTTP 400 error. In previous versions of ASP.NET, ...
|
|
-
|
|
From inside a content page you might want to alter the DOM tree when your master page layout prevents you to achieve a peculiar layout effect (for instance when doing a full-screen inline popup).
But whenever you manipulate the DOM with javascript, be ...
|
|
-
|
|
There is five way make Ajax calls with Jquery
load(): Load a piece of html into a container DOM.
$.getJSON(): Load a JSON with GET method.
$.getScript(): Load a JavaScript.
$.get(): Use this if you want to...
|
|
|
|
-
|
|
While working on my recent project I need to avoid CASE WHEN in few cases so, I derived an alternate way and in this post I am going to demonstrate that.
To execute the demonstration, take a look at the following example.
SELECT CustomerName,Addre...
|
|