Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Hopefully the title explains it all...looking to show a drop down list in a user control i'm creating which diplays on the exisitng items in under a certain doc type.
Are there any VB examples out there?
S
I have this code so far...
Protected Sub Page_Load(sender As Object, e As EventArgs)
If Not IsPostBack Then
Dim node = New Node(nodeId)
For Each childNode As Node In node.Children
Dim child = childNode
'Do something
cboService.Items.Add(New ListItem(node("Name"), node("ID")))
Next
End If
End Sub
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Create a dropdown list in my user control based on a doc type
Hopefully the title explains it all...looking to show a drop down list in a user control i'm creating which diplays on the exisitng items in under a certain doc type.
Are there any VB examples out there?
S
I have this code so far...
is working on a reply...