Category: My Blog

  • Blog
  • Category: My Blog

Zip operator in Linq with .NET 4.0

Microsoft .NET framework 4.0 is having many features that make developers life very easy. Its also provides some enhancement to Linq also. I just found a great operator called Zip which merge the sequence of two entities. Here is the explanation of Zip Operator from MSDN. “The method merges each element of the first sequence

Programmatically creating asp.net request and handling response

Recently one of the my friends asked about how to create a web request in asp.net to a url outside of project. So I decided to write a small blog post regarding this. This web request can be easily created with httpwebrequest class and you can easily consume the response we are getting from this.

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>