Tuesday 16 September 2014

Friday 12 September 2014

What is the difference between .EXE and .DLL files?

 What is the difference between .EXE and .DLL files?
EXE

  1. It is an executable file, which can be run independently.
  2. EXE is an out-process component, which means that it runs in a separate process.
  3. It cannot be reused in an application.
  4. It has a main function.

DLL
  1. It is Dynamic Link Library that is used as a part of EXE or other DLLs. It cannot be run independently.
  2. It runs in the application process memory, so it is called as in-process component.
  3. It can be reused in an application.
  4. It does not have a main function.

Displaying multiple data Fields in Bound field of grid view

Displaying multiple data Fields in Bound field of grid view

This article will describe how can we bound multiple fields is a grid view.

<columns>
    <asp:TemplateField  HeaderText="Name">
    <ItemTemplate>
        <div><%#Eval("CustomerFirstName")%>, <%#Eval("CustomerLastName")%></div>
    </ItemTemplate>
<asp:BoundField>
</columns>

Here two fields are bound.In this way we can bound more fields in grid view.