XML show in datagrid

1:22 AM | Comments (0)

using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace Examples {     public...

Read more

ScreenSaver using C#

1:20 AM | Comments (0)

using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace Examples {     public partial...

Read more

XML Write using C#

1:11 AM | Comments (0)

using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.Xml; namespace Examples {    ...

Read more

Select SysObjects using C# and show in datagrid

1:07 AM | Comments (0)

using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.Data.SqlClient; namespace Examples {    ...

Read more

View All Databases in TreeView using C#

1:04 AM | Comments (0)

using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.Data.SqlClient; namespace Examples {  ...

Read more

Create text using StreamWriter

12:39 AM | Comments (0)

using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.Security.Permissions; using System.Security; using System.IO;...

Read more

SQL queries for null values

12:35 AM | Comments (0)

update PFEP set supcusttype='1' where supcusttype is null select supcusttype from PFEP where supcusttype is null ...

Read more

Stored procedures with exception handling in SQL S...

12:33 AM | Comments (0)

Introducing TRY...CATCH Structured exception handing provides a powerful mechanism for controlling complex programs that have many dynamic runtime characteristics. It is a...

Read more

Exception Handling using Global.asax in asp.net

12:25 AM | Comments (0)

<%@ Application Language="C#" %> <%@ Import Namespace="System.IO" %> <%@ Import Namespace="System.Web" %> <%@ Import Namespace="System.Net.Mail" %> <script runat="server">     void Application_Start(object...

Read more

MVC Architecture

12:18 AM | Comments (0)

The entire ASP.NET MVC architecture is based on Microsoft .NET Framework 3.5 and in addition uses LINQ to SQL Server. What is...

Read more

Advantages of using MVC in ASP.NET

12:08 AM | Comments (0)

There's no duplicated code. The business logic is encapsulated; hence the controller code is transparent and safer. The business logic can be...

Read more