hi I am .net programmer I am strong with dataset but my current conversion program requires asp knowledege too. I want some idea how to create dynamic table and row and cell and contorls in cells. Here how I am doing ... I couldn't find any information to find out if it's right or not ... Dim tblNewtable as New Table Dim rwNewRow as New TableRow Dim ceNewCell as New TableCell For loop tblNewtable = new Table With tblNewtable rwNewRow = new TableRow with rwNewRow ceNewCell = new TableCell with ceNewCell 'Creater control '.text = "I am in cell" End With ''end cell rwNewRow.Cell.add(ceNewCell) end with ''end row tblNewtable.Row.add(rwNewRow) end with ''end table how do i add table to form ???? Next Thanks
C
chhayaparekh
@chhayaparekh
Posts
-
asp to asp.net -
Web servicesHow do I read elements from WSDL and crat a dropdown list of all methods that are availbel for that perticular Web service.
-
DropdownlistCan anybody please help me with dropdownlist. it must be very simple ... I have this dropdown list which returns me only 1st record .. no matter what i select. I m using drodownlist1.seletedItem.text to see the value and it's always showing me that i have selected 1st record. Thanks