Quantcast
Channel: Way 2 Resources - Asp.Net
Browsing all 10 articles
Browse latest View live

What Is The Concept of Boxing And Unboxing?

What Is The Concept of Boxing And Unboxing?Boxing and Unboxing act like bridgesbetween value type and referencetypes.when we convert value type toreference types ,its termed as boxing.Unboxing is just...

View Article



What is the Difference between Namespace and Assembly?

What is the Difference between Namespace and Assembly? These are the Following differences between Namespace and Assembly: 1) Assembly is the physical grouping of logical units,namespace,logically...

View Article

Meaning of Namespace in C#

What is the meaning of Namespace in c#?Namespace has two basic functionality:1) Namespace has Logically Group Types, example System.web.UI logically groups UI related features.2) In the Object...

View Article

Class File to Make Print Option on Web Page

Class file to make print option on web page using System;using System.Data;using System.Configuration;using System.Web;using System.Web.Security;using System.Web.UI;using...

View Article

How to Allow Sorting in Grid.

Sorting in grid.  protected void GridView1_Sorting(object sender, GridViewSortEventArgs e){BindGridview(e.SortExpression, ConvertSortDirectionSql(e.SortDirection));} private string...

View Article


Select Only Date Part From A DateTime Value in Sql Server

Hi,Many times we required to compare user inserted date value with our database datetime value, during showing these types of report because while comparing the values system compares the time values...

View Article

Create XML From A DataTable in Asp.Net

Hi,Sometimes our requirement is to convert a DataTable data or DataSet data in to an XML format for sending it to database or making a XML file for browser or any other need. In this type of situation,...

View Article

Making ASP.NET Application Which Supports Any Type of Database Server

Hi, If anyone needs to develop an asp.net web appliction which supports more than one database like oracle and sql server.One thing you have to do is have connection strings for both database server...

View Article


Where to Use Ref And Out Parameters in C#

Hi, Both out and ref parameters are very useful to return values in same variables, that you pass as an parameter of a method, these are very useful when the requirement is to return more than one...

View Article


How to Implement IN Operator for more than 1000 values in SQL or Oralce

Hi,How to Implement IN Operator for more than 1000 values in SQL or OralceSelect statement is used to get data from database and The IN operator allows us to specify multiple values in a WHERE clause...

View Article
Browsing all 10 articles
Browse latest View live




Latest Images