Senior & Expert .Net Developers Discussion Forum by Nyros Technologies

HIRE .Net Expert Developers Programmers Coders From India
Ruby on Rails PHP .Net Developers Community, Nyros Technologies, Kakinada
 
Log in  or IF not a member please REGISTER
Username:
Password:   


Keyword
Log in | Profile 

How to add Link Button to Table Control in asp.net

 
Post new topic   Reply to topic    Senior & Expert .Net Developers Discussion Forum by Nyros Technologies Index -> Asp.Net
View previous topic :: View next topic  
Author Message
Abhi



Joined: 21 Aug 2007
Posts: 145

PostPosted: Mon Aug 11, 2008 5:40 am    Post subject: How to add Link Button to Table Control in asp.net Reply with quote

hi experts,

I want to add a link button to asp.net table control. any body let me the code for this...
Thanking you in advance.
regards,
abhi.
Back to top
View user's profile Send private message
craig



Joined: 24 Aug 2007
Posts: 36

PostPosted: Mon Aug 11, 2008 5:52 am    Post subject: Reply with quote

hi all,

here is the code to add a linkButton to a table control.
Code :
Arrow
int numberOfItems = 12; // for example
int numberOfCells = 5;

// Determine how many rows it will have
int count = numberOfItems / numberOfCells;
if (numberOfItems % numberOfCells != 0)
count++;

for (int j = 0; j < count; j++)
{
TableRow row = new TableRow();
for (int i = 0; i < numberOfCells; i++)
{
TableCell cell = new TableCell();
// Can be a LinkButton or whatever... your choice!
LinkButton lnk = new LinkButton();
lnk.ID = "myLNK";
lnk.Text = "Item "+j.ToString() + i.ToString();
// add whatever properties you want for the LinkButtons
cell.Controls.Add(lnk);
row.Cells.Add(cell);

}

// assuming you have an ASP.NET Table control in your page with ID set to 'tblMenu'
tblMenu.Rows.Add(row);

}

here "tblMenu" is ID of Table Control . Copy and Paste the above code.


regards,
craig
Back to top
View user's profile Send private message Send e-mail
Display posts from previous:   
Post new topic   Reply to topic    Senior & Expert .Net Developers Discussion Forum by Nyros Technologies Index -> Asp.Net
Page 1 of 1


 latest topics 
 Topics   Replies   Author   Views   Last Post 
No new posts Exceptional Manger
1 suraj 26 Thu Sep 02, 2010 8:52 am
Rahul View latest post
No new posts background image for UITableView
0 kumar 31 Wed Sep 01, 2010 10:34 am
kumar View latest post
No new posts Types of Run time exceptions
1 Dheeraj 30 Wed Sep 01, 2010 8:58 am
venkat View latest post
No new posts Access Web Page content in Windows Forms without WebBrowser
3 mouli 258 Wed Sep 01, 2010 7:31 am
rajesh View latest post
No new posts Explain Interlocked Class & Daemon Thread's?
1 mukundh 53 Wed Sep 01, 2010 7:19 am
setty View latest post
No new posts Life Cycle Of Delegate
0 vinay 29 Wed Sep 01, 2010 7:14 am
vinay View latest post
No new posts Accessing methods defined in another page
1 suraj 30 Tue Aug 31, 2010 12:45 pm
Rahul View latest post
No new posts How ASP.Net events are processed?
1 Teena 33 Tue Aug 31, 2010 11:55 am
suraj View latest post
No new posts Universal description discovery and integration
1 Dileep 25 Tue Aug 31, 2010 11:45 am
venkat View latest post
No new posts What is the difference between Shadowing and Overriding ?
1 suraj 35 Tue Aug 31, 2010 11:37 am
Teena View latest post




Hire an expert .Net developer / coder / programmer or development team from India now!!

Other Forums : Ruby on Rails   ::   PHP   |   Free unlimited HTML CSS templates download

Nyros Technologies   |   Kakinada City Portal   |   Developers Blog   |   About .Net Experts   |   More