Featured
-
How to enable CORS (Cross-Origin Requests) in ASP.NET Web API
There are certain steps that need to be followed f
by gaurav.gautam -
Why does my CHM have a blank content pane?
Hello Readers, Many times I have heard that, many
by Chetan.Sharda -
How to connect to icloud calendar?
Hello coder's world, To connect to icloud calen
by govind.chauhan -
Working with List in Provider Hosted App for Sharepoint
Sharepoint List in Provider Hosted App This Blo
by shubham.mamgain -
REST attributes of WCF Service
Objective: In this article we will explain what a
by govind.chauhan
Tags
Tuple in c#
Tuple is new feature added in C# 4.0 with dynamic programming. Tuple allow us to group a heterogeneous elements together. Tuple is new for the C# developers as it is already present in other languages like Python and F#.
Generally, I...
Dependency Property
A Dependency property is a property which allow the analytical code to modify the properties of an object to minimize a data necessities by giving a powerful reporting system about to change of a data in a particular way.
In dot net generall...
Anonymous Method in C#
Anonymous method is a method without any name and return type but have a body content and the optional arguments. This type of method is created by using the delegate keyword. Return type of the anonymous method is dependence on the return ...
Late Binding Using Reflections
In this blog we illustrate how to get the late binding using reflections for this firstly we need to understand "what is reflection" and "what is late binding".
What is reflection?
Reflection is basically read the asse...
String was not recognized as a valid DateTime
Hi,
Many a times we encounter this issue where passing the correct date also ends up on this error, which makes it a bit complex and mind boggling.The main reason behind the error is the string passed as a date is not in the format the system ...
How to transfer the GridView data to DataTable?
In this blog we are going to illustrate how to transfer the GridView data to DataTable.
To transfer GridView to DataTable:
We add button in .aspx page where the GridView display the data. By clicking this button user transfer the GridView d...
How to create a partial view in Asp.net MVC
This blog illustrate how to create a partial view in Asp.net MVC by using below steps:
Create a model class for partial view
using System;
using System.Collections.Generic;
using System.Linq;
using Syste...
How to upload a file using Asp.Net MVC and AJAX?
In this blog we illustrate how we can upload a file using ASP.Net MVC and AJAX.
Follow the below steps to upload a file:
Firstly we need to create model which contains the properties such as name, length and type o...
How to do client side validation in Asp.Net MVC?
In this blog, we illustrate how to enable a client side validation in Asp.Net MVC.
Firstly we need to understand what is client side validation in Asp.net MVC.
Client side validation:
All Client side validation is han...
Convert byte array to string
In this blog we see how to convert byte array to string using following methods:
1. Convert byte array to string using Convert.ToBase64String
This method is used to convert the specified byte array to its corresponding string format which i...