Wednesday, 17 September 2014

Dictionary(Generics) in c# asp.net | example and output

Dictionary(Generics) in c# asp.net | example and output
In this article i am going to show how to use generics using dictionary . basically dictionary uses key value pair to display record. we can add , remove , insert data in dictionary using key / value pair . but this is that you need to  follow some rules. To declare or define dictionary...

Monday, 15 September 2014

List(Generic) | DataTable | Bind Gridview with examples

List(Generic) | DataTable | Bind Gridview with examples
In this article i amGgoing to show how to create temporary table and fetch data in list to perform generics process and later on to bind Gridview. with examples.    private void Genericswithtable()     {         DataTable temporarytableDt = new DataTable();  ...

Generics in c# with examples | Generics demo

Generics in c# with examples | Generics demo
Generics are type safe because there is no boxing and unboxing so i will take  single datatype not heterogeneous like array list so execution will be faster compare to collections. Just we need to import System.collection.generics;  private void PrivateGenerics()    ...

How to Bind Gridview using ArrayList in C# | Bind DropDown list

How to Bind Gridview using ArrayList  in C#   | Bind DropDown list
In This Article I am going to show You How to Bind GridView with Array List using Datatable and multidimensional array. to bind dropdown  string[,] mularray = {                     { "Dev",...

ArrayList in c# with examples

ArrayList in c# with examples
How to use arraylist in c#. theses are basically collection so we need to import system.Collection; Then to add array and array list Here i have shown the code and examples to include array list in ur application. private void arraylistdefault()     {        ...

Thursday, 28 August 2014

Export Datatable value to Excel in asp.net c#

Export Datatable value to Excel  in asp.net c#
Hi Everyone in this article  have shown how to export data table value in excel . basically I don't have ms office installed so i  have opened with browser. basically that is html table i  am generating but because i have given .xls extension so we can open it in excel also. so...

Wednesday, 27 August 2014

Generate Dynamic table in html format in .cs page | Table Report | Design Report in asp.net with c#

Generate Dynamic table in html format in .cs page | Table Report | Design Report in asp.net with c#
Hi Everyone  in this article i am going to show how to generate dynamic table or we can say clone of grid view with code behind . we dont need to add any new control just apply css on code behind page and generate table with data. i have shown both example with grid view and aslo with...

how to merge row in gridview when value is same

how to merge row in gridview when value is same
hi guys in this article i am  going to show you how to merge rows in grid view it two rows has same value. idea is very simple to check if next and previous rows has some equal data then merge that number of rows.using col span. lets have a look. Now here there is no mathing...

How to Export Gridview data in excel format in c# asp.net with example

How to Export Gridview data in excel format in c# asp.net with example
Hi everyone in this article i am going to show you how to Export gridview  data into excel. first thing is that you should have  Ms offices installed i don't have installed but i will show you in browser. lets get the code which will fill the grid .i am using visual studio...

Tuesday, 26 August 2014

Wednesday, 2 April 2014

An unhandled exception of type 'SAP.Middleware.Connector.RfcCommunicationException' occurred in sapnco.dll

An unhandled exception of type 'SAP.Middleware.Connector.RfcCommunicationException' occurred in sapnco.dll
An unhandled exception of type 'SAP.Middleware.Connector.RfcCommunicationException' occurred in sapnco.dllAdditional information: LOCATION    CPIC (TCP/IP) on local host with UnicodeERROR       partner 'ipaddress' not reachedIt shows the error...

Unhandled Exception: System.TypeInitializationException: The type initializer for 'SAP.Middleware.Connector.RfcDestinationManager' threw an exception. ---> System.TypeInitializationException: The type initializer for 'SAP.Middleware.Connect or.RfcConfigParameters' threw an exception.

Unhandled Exception: System.TypeInitializationException: The type initializer for 'SAP.Middleware.Connector.RfcDestinationManager' threw an exception. ---> System.TypeInitializationException: The type initializer for 'SAP.Middleware.Connect or.RfcConfigParameters' threw an exception.
This  error comes when we have included sapnco and utills dll in  your  folder for sap connection with asp.net in c# or vb.net.so for that you do just one thing  put your exe file and dll files in same folder.and run exe files it will works.definitely.because sapnco and...

Wednesday, 26 February 2014

How to find out day and year and month in respective date in sql server .2005 | sql server 2008.

How to find out day and year and month in respective date in sql server .2005 | sql server 2008.
we will see how can we find out day and month and year in given date separately .to find out same we have to use DAY ,MONTH and YEAR keyword respectively which is by default or defined by sql server .so no need to put some extra efforts.just write same keyword after you use that keyword they...
Page 1 of 4812348Next »