Aspdotnet-Suresh

aspdotnet-suresh offers C#.net articles and tutorials,csharp dot net,asp.net articles and tutorials,VB.NET Articles,Gridview articles,code examples of asp.net 2.0 /3.5,AJAX,SQL Server Articles,examples of .net technologies

Showing posts with label VB.NET. Show all posts
Showing posts with label VB.NET. Show all posts

Pass Generic List (List) as Parameter to Function in C#, VB.NET

Jan 9, 2017 0 comments
Introduction:

Here we will learn how to send list (List<string>) as parameter to function in asp.net using c#, vb.net with example or asp.net pass generic list as parameter to method using c#, vb.net with example or asp.net pass list object as parameter in function using c#, vb.net with example or pass list<class> as an argument to the function in asp.net using c#, vb.net with examples. We can easily send list values as a parameter to the function normal like other functions with parameters.

Description:

In previous articles I explained get first element from ienumerable list in c#, vb.net, convert datatable to ienumerable list in c#, vb.net with example, difference between iqueryable and ienumerable in c#, vb.net, Different types of constructors in c#, vb.net, destructor in c#, vb.net with examples and many more articles related to in asp.net, c#, vb.net. Now I will explain how to send or pass generic list as a parameter to the function in asp.net using c#, vb.net with example.

Asp.Net Check If Arraylist Contains Specific String Value or Not

Jan 8, 2017 0 comments
Introduction:

Here I will explain how to check if arraylist contains string value or not in
asp.net using c#, vb.net with example or asp.net check arraylist contains value in c#, vb.net with example or find a string in arraylist in c#, vb.net with example or check if value exists in arraylist using c#, vb.net with example or check existence of string value in arraylist in c#, vb.net with example. By using array list contains property we can easily check whether given string value exists in array list object or not in c#, vb.net.

Description :
  
In previous articles I explained
multiple inheritance in c#, vb.net with example , fragment caching in c#, vb.net with example , connection pooling in c#, vb.net with example , simple windows service example in c#, vb.net , difference between IQueryable and IEnumerable with example and many articles relating to asp.net, c# and vb.net . Now I will explain how to check if given string value exists in arraylist in c#, vb.net with examples.

Asp.Net Get (Fetch) Data from MySQL Database using C#, VB.NET

Nov 16, 2016 1 comments
Introduction

Here we will learn how to get or retrieve data from mysql database in asp.net using c#, vb.net with example or asp.net web application fetch data from mysql database connection example or asp.net display data from mysql database connection using c#, vb.net with example or how to use mysql database in asp.net web application to retrieve and show the data in c#, vb.net example. By adding MySQL.Data.dll reference in our asp.net applications we can easily connect and fetch data from MySQL database in our applications.

Description

Asp.Net Connect MySQL Database using C#, VB.NET

3 comments
Introduction

Here we will learn how to connect mysql database in asp.net using c#, vb.net with example or asp.net web application with mysql database connection example or asp.net mysql connection example using c#, vb.net or how to use mysql database in asp.net with c#, vb.net example. By adding MySQL.Data.dll reference in our asp.net applications we can easily use MySQL in our applications.

Description

Differences between IQueryable and IEnumerable in C# with Example

Sep 26, 2016 17 comments
Introduction:

Here I will explain difference between IQueryable and IEnumerable list in c# with example or IEnumerable vs IQueryable list in c# with example or what is difference between IQueryable and IEnumerable list in c# with example. In c# we use IQueryable and IEnumerable lists to perform data manipulation.

Description:

Dictionary in C#, VB.NET with Examples

Aug 24, 2016 5 comments
Introduction:

Here I will explain what is dictionary in c#, vb.net with example or dictionary object in c#, vb.net with example or how to create and use dictionary object in c#, vb.net with example. Dictionary object in c# or vb.net is a collection which is used to represent data as a key and value pairs.

Description:

Ajax Fileupload Control to Upload Multiple files with Drag Drop and Progress Bar in ASP.Net

Aug 18, 2016 4 comments
Introduction

Here I will explain how to upload multiple files / images with drag and drop in
asp.net using ajax fileupload control in c#, vb.net with example or show progress bar while uploading files using ajax file upload control in asp.net example in c#, vb.net  or upload files with progress bar using ajax fileupload control in asp.net with examples. By using ajax fileupload control we can upload multiple files / images in asp.net with drag drop and we can show progress bar while uploading files easily with few configurations in c#, vb.net with example.

Difference between ArrayList and List in C#.Net and VB.Net

Aug 10, 2016 7 comments
Introduction:

Here I will explain difference between arraylist and list in c#, vb.net with example or arraylist vs generic list in asp.net using c#, vb.net with example or difference between generic list and arraylist collection in c#, vb.net with example. In c# or vb.net we use arraylist and generic lists to store any type of data in a collection format.
Description:

Fragment Caching in Asp.Net with Example

Aug 8, 2016 1 comments
Introduction

Here I will explain what is fragment caching in
asp.net or partial caching in asp.net with examples or how to use partial / fragment caching in asp.net using c# with example. Fragment caching in asp.net allows us to cache particular portion of web page instead of whole page and this can be achieved by using user controls in asp.net.

Description:
  
In previous articles I explained connection pooling in asp.net, difference between initialization and instantiation, SQL difference between @@Identity, scope_identity, ident_current, cursor in sql server with example, dispose vs finalize method in c# / vb.net, asp.net page load vs page init with example
and many articles relating to asp.net, c#, vb.net, JavaScript and jQuery. Now I will explain what is fragment caching in asp.net and how to use fragment caching in asp.net using c#, vb.net with example.

LINQ to SQL Call Stored Procedure in ASP.Net using C#, VB.Net

Aug 7, 2016 3 comments
Introduction

Here I will explain how to call stored procedure in LINQ to SQL using
asp.net in c#, vb.net with example or LINQ to SQL use stored procedure in asp.net using c#, vb.net or how to call stored procedure in LINQ using asp.net in c#, vb.net with example. By using LINQ to SQL (dbml) file in our asp.net application we can call stored procedure easily in c#, vb.net.

Asp.Net Call Code Behind (Server Side) Function from JavaScript in C#, VB.Net

Aug 3, 2016 2 comments
Introduction

Here I will explain how to call code behind method / function from JavaScript in
asp.net using c#, vb.net with example or asp.net call code behind / server side method from JavaScript using c#, vb.net or how to call code behind method from JavaScript in asp.net using c#, vb.net with example. By using asp.net ajax scriptmanager property “EnablePageMethods = True” we can call server side method  in c#, vb.net.

Call ASP.Net Page Method using jQuery AJAX Example

Aug 2, 2016 2 comments
Introduction

Here I will explain how to call asp.net page method using jQuery ajax example or jQuery ajax call asp.net page method with example or asp.net page method using jQuery ajax with example or jQuery 
ajax bind dropdownlist using asp.net page method with example.
Description:
  
In previous articles I explained jQuery load more data when click on button in asp.net, jQuery autocomplete textbox with master page in asp.net, jQuery ajax json example in asp.net
Bind gridview using JQuery in asp.netAutoComplete textbox with JQuery using asp.net and many articles related to jQueryasp.net and ajaxNow I will explain how to call asp.net page using jQuery ajax with example.
We will learn how to call asp.net page method using jQuery ajax with dropdownlist binding from database for that first design table in database and give name as Country as shown below

Connection Pooling in Asp.Net using C# with Example

Jul 29, 2016 6 comments
Introduction

Here I will explain what is connection pooling in
asp.net using c#, vb.net with example or how to use connection pooling in ado.net with example or asp.net understand connection pooling with example in c#, vb.net with example. Connection pooling in asp.net is the place where it maintains set of active connections to database based on configuration and it reduce the cost of opening and closing connection to database.

Count Number of Occurrences of a Character in String C#, VB.NET

Jul 25, 2016 0 comments
Introduction

Here I will explain how to count number of occurrences of character in string in
asp.net using c#, vb.net with example or asp.net get number of occurrences of a character in a string or find number of characters occurrences in string in asp.net using c#, vb.net with example. We have different ways to get number of occurrences of character in string like loop through the string and get number of character occurrences or use LINQ queries to get character occurrences in string in c#, vb.net.

© 2015 Aspdotnet-Suresh.com. All Rights Reserved.
The content is copyrighted to Suresh Dasari and may not be reproduced on other websites without permission from the owner.