Wrox Programmer Forums
|
ASP.NET 2.0 Basics If you are new to ASP or ASP.NET programming with version 2.0, this is the forum to begin asking questions. Please also see the Visual Web Developer 2005 forum.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the ASP.NET 2.0 Basics section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old September 5th, 2007, 09:50 PM
Authorized User
 
Join Date: Aug 2007
Posts: 70
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to yukijocelyn
Default Linkbutton array

Hi

I'm stuck with the array here. I want to create an array of linkbuttons that will contain the information that I have from the database for users to click on to display the full details. However, I'm stuck with this array because of the declaractions.

What I have done so far is this:

Dim linkbtnValues() As LinkButton
While (reader.Read())
   Dim a As String = reader(searchfield).ToString
   linkbtnValues = a
End While

However there a mismatch of variable declared. "linkbtnValues" is of linkbutton type while a is a string. How can I change the text of the linkbuttons to the values in a?

Thank you
 
Old September 6th, 2007, 03:53 AM
Friend of Wrox
 
Join Date: Oct 2004
Posts: 553
Thanks: 0
Thanked 1 Time in 1 Post
Send a message via MSN to vinod_yadav1919 Send a message via Yahoo to vinod_yadav1919
Default

Hii yukijocelyn!!
Hope this link will help you
http://forums.asp.net/p/1039944/1446012.aspx


Cheers :)

vinod
 
Old September 6th, 2007, 04:14 AM
Authorized User
 
Join Date: Aug 2007
Posts: 70
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to yukijocelyn
Default

Hi

Thank you for replying, I've been to this page before, but it's in C, I don't really understand C.
Is there any VB version?

Thank you!
 
Old September 6th, 2007, 04:46 AM
Friend of Wrox
 
Join Date: Oct 2004
Posts: 553
Thanks: 0
Thanked 1 Time in 1 Post
Send a message via MSN to vinod_yadav1919 Send a message via Yahoo to vinod_yadav1919
Default

Hii yukijocelyn!!
1>create an arraylist say lBtnArrLst
2>dim lBtn as LinkButton
3>While (reader.Read())
    lBtn=new LinkButton
    lBtn.Text=reader(searchfield).ToString
   //add this lBtn to lBtnArrLst
 End While
4>now u can use lBtnArrLst as an array of linkButton

I know little bit abt vb.net as I have worked on C#,but the concept is same.

Cheers :)

vinod
 
Old September 7th, 2007, 02:06 AM
Authorized User
 
Join Date: Aug 2007
Posts: 70
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to yukijocelyn
Default

Hi

thanks for the translation into VB. I've did it. Thank you so much for your help.





Similar Threads
Thread Thread Starter Forum Replies Last Post
WebControls.LinkButton Ric_H ASP.NET 2.0 Basics 1 January 28th, 2006 08:00 AM
linkbutton control jake ASP.NET 1.0 and 1.1 Basics 1 December 6th, 2005 02:30 PM
linkbutton Beulah VS.NET 2002/2003 3 October 10th, 2005 05:00 PM
linkbutton and postback jtyson ASP.NET 1.0 and 1.1 Professional 1 July 14th, 2003 06:37 PM
linkbutton and postback jtyson ASP.NET 1.x and 2.0 Application Design 0 July 10th, 2003 12:17 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.