Category: Microsoft

  • Selecting and Sorting in DataTable – ASP.net C#

    Demonstrates that how to select and sort the Datatable in ASP.Net , C#

  • Telerik RadSchedular Tips and Tricks

    Change the style of the Today Cell in Month View and Bind Extra Column / Add Argument in RadSchedular

  • Opening RadWindow from another RadWindow – Telerik Control

    Opening RadWindow from another RadWindow: Sometime it may require opening the radwindow from another radwindow. But believe me; it will not be easy.Problems I faced were: New window opened behind the parent radwindow. New window open in area of parent window only. So we cannot resize the window as per required. To overcome all these properties:…

  • Background and foreground thread in c#

    Example of Threading in C#. Includes Foreground and Background Threading.

  • Tracing ASP.NET Website

    Demonstrates that how to Trace ASP.NET web applications

  • DataGrid Sorting and Paging Example – Part 2

    For Part 1, visit This URL https://jitendrazaa.com/blog/?p=191 In this part, i will show that how to Sort the Datagrid Component of ASP.NET. To sort Datagrid, we will need DataView and then assign Dataview as datasource to our Grid control. We will need to change our code of Part 1. Previously, we used DataSet as a Datasource.…

  • DataGrid Example – Part 1

    For the basics of DataGrid please refer this post: https://jitendrazaa.com/blog/?p=188 In this example, i will explain the basics of DataGrid control like Theming, Databinding etc. We will start our example with creating the SQL Express database of Employee which will contain the following fields : Id, FName, LName, Email. Now create a stored procedure to…

  • ASP.NET DataGrid basic questions

    What is datagrid? The DataGrid Web server control is a powerful tool for displaying information from a data source. It is easy to use; you can display editable data in a professional-looking grid by setting only a few properties. At the same time, the grid has a sophisticated object model that provides you with great…

  • Handlers in ASP.NET

    HTTP Handlers is a new technique presented in ASP.NET that was not present in the “Classic ASP”. HTTP Handlers are components that implement the System.Web.IHttpHandler interface. Unlike ASP.NET pages Handlers dont have HTML-markup file, no events and other supporting. All they have is a code-file (written in any .NET-compatible language) that writes some data to the server HTTP…

  • Upload Files in ASP.NET at Production server

    In this article, i am going to demonstrate that how to upload the file in ASP.NET production server. Most of the case, a developer created a code to upload the file and test it on his local machine. program runs smoothly, but as he forward the same code on production. He stuck in the file permission error as on…