Hi,
The following code displays jobs in the datagrid control and depends on the user selection it will display the details of the job in the another page detaildisplay.aspx.
<div align="left" style="padding-left:30px">
<asp:DataGrid
ID="dgrdNewJobs"
AllowPaging="True"
OnPageIndexChanged="NewJobsPage"
PageSize="15"
PagerStyle-HorizontalAlign="left"
GridLines="None"
Cellspacing="4"
AutoGenerateColumns="False"
ShowHeader="False"
Runat="Server">
<Columns>
<asp:BoundColumn
DataField="job_entrydate"
DataFormatString="{0:m} : " />
<asp:HyperLinkColumn
DataTextField="job_briefdesc"
DataNavigateUrlField="job_id"
DataNavigateUrlFormatString="~/sitejob/detaildisplay.aspx?id={0}"/>
<asp:TemplateColumn HeaderText="FAQ Description">
<ItemTemplate>
<%# DataBinder.Eval(Container.DataItem, "job_area") %>
</ItemTemplate>
</asp:TemplateColumn>
</Columns>
</asp:DataGrid></p>
Develop web accounting application using asp.net
http://www.vkinfotek.com