how to show and print employee salary details
-
dear sir/madam, i am new in asp.net with vb. i need to show the salary details of n number of employee in the folowing format.All the data are stored in database.i want to creat a format to show the details and print alldetails one by one with a single click event. Tweera soft company,india PaySlip no:12 date:10/11/05 ------------------------------------------------------------------------- employee name:Hinoop Departmnt:MARKETING Designation :HR manager -------------------------------------------------------------------------- Basic Pay: 8000.00 PF: 1000.00 DA : 2000.00 ESI:500.00 --------------------------------------------------------------------------- Net salary : 10000.00 --------------------------------------------------------------------------- Addition Deduction Telephone alowance:100 .00 telephone bill:100.00 XXXXXXXX :100. 00 XXXXXXXXXXXXX : 100.00 ____________________________________________________________________________ payable : 9800.00 --------------------------------------------------------------------------- Authorised by:ravi prepared bye:vipin -------------------------------------------------------------------------- -------------------------------------------------------------------------- Tweera soft company,india PaySlip no:13 date:10/11/05 ------------------------------------------------------------------------- employee name:Manu.p Departmnt:MARKETING Designation :accountanat -------------------------------------------------------------------------- Basic Pay: 10000.00 PF: 1200.00 DA : 2000.00 ESI:700.00 --------------------------------------------------------------------------- Net salary : 10,000.00 --------------------------------------------------------------------------- Addition Deduction Telephone alowance:1600 .00 telephone bill:300.00 XXXXXXXX :1700. 00
-
dear sir/madam, i am new in asp.net with vb. i need to show the salary details of n number of employee in the folowing format.All the data are stored in database.i want to creat a format to show the details and print alldetails one by one with a single click event. Tweera soft company,india PaySlip no:12 date:10/11/05 ------------------------------------------------------------------------- employee name:Hinoop Departmnt:MARKETING Designation :HR manager -------------------------------------------------------------------------- Basic Pay: 8000.00 PF: 1000.00 DA : 2000.00 ESI:500.00 --------------------------------------------------------------------------- Net salary : 10000.00 --------------------------------------------------------------------------- Addition Deduction Telephone alowance:100 .00 telephone bill:100.00 XXXXXXXX :100. 00 XXXXXXXXXXXXX : 100.00 ____________________________________________________________________________ payable : 9800.00 --------------------------------------------------------------------------- Authorised by:ravi prepared bye:vipin -------------------------------------------------------------------------- -------------------------------------------------------------------------- Tweera soft company,india PaySlip no:13 date:10/11/05 ------------------------------------------------------------------------- employee name:Manu.p Departmnt:MARKETING Designation :accountanat -------------------------------------------------------------------------- Basic Pay: 10000.00 PF: 1200.00 DA : 2000.00 ESI:700.00 --------------------------------------------------------------------------- Net salary : 10,000.00 --------------------------------------------------------------------------- Addition Deduction Telephone alowance:1600 .00 telephone bill:300.00 XXXXXXXX :1700. 00
You can try using the
System.Web.UI.WebControls.Repeater
to do something similar to this. You can find more information on MSDN.[^] The documentation has an example on VB.NET that shows you how to create a simple table layout. ~Javier Lozano