Category: My Blog

  • Blog
  • Category: My Blog

How to add service reference dynamically from user control? Microsoft Ajax

First, Create a web page default.aspx and put the html code as following.. ————————————————————————— ————————————————————————– Now, Create a usercontrol my first user control Create a function called AddScriptReference as following… ‘————————————————————————– private void AddScriptReference() {      ScriptManager scriptManger = ScriptManager.GetCurrent(this.Page);      if (scriptManger != null)      {          ServiceReference serviceReference = new ServiceReference();          serviceReference.Path=”~/MyWebService.asmx”;

How to use migration with Entity Framework Core

Entity framework core is  the lightweight, extensible and cross-platform version of Entity Framework. Before some time, Microsoft has Released a new version of Entity Framework RC2. I have written a couple of blog post about Entity framework code first migration earlier for Entity framework 6.0. So there was a couple of request coming for writing a

Important Mile stone achieved–I got 4,00,000 visitors for my blog

I have written this blog more than 5 years now and today I got one great news from sitemeter.com that I have achieved 4,00,000 visitors milestone. I would like to take this opportunity to thanks all the my readers for everything. I got nice appreciations from people around me and that’s encourage me to write

Convert C# Object into JSON and vice versa using Jil

I have also written couple of posts about converting C# object into JSON and vice versa. Following is a list of post for the same. Converting a C# Object into JSON string How to convert C# object into JSON string with JSON.NET In this blog post we will learn about how we can convert C#