Posts by Daniel Manfrini • 31 points
2 posts
-
0
votes1
answer376
viewsA: Print Datatable on a DIV using Bind or Eval
The ideal is that you use a Gridview, Repeater or a Listview (these last two seem to be better for what you want, since you can mount them inside a div as you want). This link explains how to use…
-
3
votes3
answers9419
viewsA: How to use the Dropdownlist Selectedvalue value?
Suppose your Dropdownlist is called 'ddlSexo', to get the value use: string sexo = ddlSexo.SelectedValue; And to popular the Dropdownlist, assuming that you are reading from a datatable named 'dt'…