Ask a Question related to ASP.NET General, Design and Development.
-
Domien Holthof #1
Runtime control creation
I'm building a page in which - at runtime - I'm adding
Button controls to an asp:tablecell. Code looks more or
less like this :
Public Sub FillList(sender , e)
...
While DataReader.Read()
...
oButton = New Button()
oTD.Controls.Add(oButton)
...
End While
...
End Sub
Public Sub ButtonClick(sender , e)
....
End Sub
I want all buttons to do a PostBack to the ButtonClick
function on the same page. Is this possible?
Thanx a lot in advance,
Domien
Domien Holthof Guest
-
Image control runtime creation issue
I am having problems getting the Image control to actually display the image I specify in the source property. The Image control is created in... -
Web user control creation - Resolve an ImageUrl property if control themed
Hi I'm creating a WebControl which has a themeable ImageUrl property : <Bindable(True), Category("Appearance"),... -
Creation and Positioning DataGrid Columns at runtime.
Hello, I need to create a DataGrid that looks something like this... <HyperLinkColumn><ButtonColumn><Data><Data><ButtonColumn> but I can only... -
Adding Validator Control at runtime in a Custom Control
Hi Wim, How do we link the TextBox to this validator control class in runtime ? Could you please tell. Thanks _ Muds. Wim Hollebrandse... -
ASP.NET DataGrid and TextBox creation at runtime?
Hello, How do I create the following at runtime? I am able to create a TextBox Column at runtime using "DataGridColumn" class. But I don't know...



Reply With Quote

