Introduction:
In this article I will explain
how to change or add Meta tags dynamically in asp.net to aspx page in c#.net, vb.net.
We can add meta tag and page title statically, which is easy. But some time it
is needed to add or change Page title and meta tag dynamically i.e. from code
behin...
Sunday, 31 May 2015
Thursday, 28 May 2015
Posted by Unknown on 03:05
with No comments so far

In this article I will
explain how to apply validation (allow only numeric value) on textbox using Javascript.
I have entered only numeric values in textbox and alphabets or special
characters are not allowed.
In this article I have a TextBox for which I have specified
three event handlers, onkeypress,...
Wednesday, 27 May 2015
Posted by Unknown on 02:47
with No comments so far

Introduction:
In this article, I will
explain how to use jQuery or javascript to merge multiple tables into a single
table....
Monday, 25 May 2015
Posted by Unknown on 01:01
with No comments so far

Introduction: In this
article I will explain how change first letter of the word to uppercase and
Lowercase.
We can use jquery or javascript to complete this task....
Thursday, 21 May 2015
Posted by Unknown on 03:18
with No comments so far
CTE
stands for Common Table expressions. It was introduced with SQL Server 2005. It
is a temporary result set which can be referenced in the same query just
as a view. Unlike temporary table its life is limited to the current query. It
is defined by using WITH statement. CTE improves readability and ease in
maintenance of complex queries and sub-queries.
Syntax:
; WITH CTEName (Column aliases)
AS...
Wednesday, 20 May 2015
Posted by Unknown on 00:04
with No comments so far

Magic tables in SQL:
Magic tables are the logical tables in SQL server. There are two
types of logical tables in SQL server:
Inserted
Deleted
These tables are automatically created
and managed by SQL Server internally. These tables hold the recently inserted,
deleted and updated values during Insert,...
Tuesday, 19 May 2015
Posted by Unknown on 23:02
with No comments so far
In this article I will explain the difference between
string and stringbuilder in c#.
String
String
is immutable object (i.e. once created cannot be changed ) and It
always create new object of string type in memory. If we want to append or replace something in
string then it will discard the old value and will create new instance in
memory to hold the new value. String...
Posted by Unknown on 03:00
with No comments so far

SQL
Dynamic Query:
Sometime hard coded queries are not suitable to achieve the
result. In that case we create dynamic query. SQL provide us different ways to create
dynamic queries:
1.
Query
With parameter
2.
Use
Exec
3.
Use
sp_executesql
1.
Query
With...
Subscribe to:
Posts (Atom)