Author: admin

  • Blog
  • Author: admin

Understanding KRE,KVM,KLR and KPM in ASP.NET 5(vNext)

ASP.NET 5(vNext) is a new upcoming version of ASP.NET that Microsoft has redesigned from the scratch. Recently Microsoft has released Visual Studio 2015 Preview and with that they have released ASP.NET VNext.  In ASP.NET 5 (vNext) it comes with new runtime environment called KRE(K Runtime Environment) . With this version you can also run your

code for date picker combobox control in asp.net:

ASP.NET provides calendar control to select datebut some time it not feasible due to the size ofit. It takes more spaces. So we are required to create a new web control which is used less space and also provides date selection mechanismhere are the code for that control in C#HTML CODE:================================================ <asp:dropdownlist id=”cmbDay” AutoPostBack=”True” runat=”server”></asp:dropdownlist>

ILSpy-Alternative of .NET Reflector

Sometimes we need to have decomposer tool or reflector tool for our applications to improve the performance or to know the internals of the assembly we have created. I was using Red Gate .NET Reflector earlier for same as it was free. Now Red Gate has made that tool paid version so I was finding

C# 6.0–String Interpolation

This blog post is part of C# 6.0 Features Series. As we all know, C# 6.0 provides lots of small enhancements to the language and string interpolation is one of them. In this blog post we are going to learn how this small new feature can help us for string concatenation. So let’s take small