Jump to content
Xtreme .Net Talk

legendgod

Avatar/Signature
  • Posts

    53
  • Joined

  • Last visited

Everything posted by legendgod

  1. I have a table and use HtmlTableRow, HtmlTableCell to make up a table and fill up the content. Now I need to make a function to change the font size according to user choice. Except add up a quot like "<id style=XXX></id>", what syntax I can use, without add up the code line by line? Thank you! ;)
  2. Is it when a dataview is changed/updated, the datatable (Let's say: ds.Tables("Suppliers") ) will be updated at the same time?
  3. Hello everyone, I am a newbie to .NET and to this forum. Nice to meet everyone. :D I have the problem as titled. I have 2 datatable named "tableA" and "tableB" in single dataset named "DS". DS is stored in session when first time it is filled with adaptor. The datatables are sorted with appropiate SQL statement when it is called by adaptor. However, after I make some change to the datatables. ( using some test code like: <CODE> tableA= DS.Tables(0) Dim updateRows as DataRow() = tableA.Select("schId = 44","schId") if updateRows.Length > 0 then For i=1 to updateRows.Length-1 updateRows(i).Item("hId") = 5 Next end if </CODE> I want to sort the DS.Tables(0) before write it back to session. What should I do? Some ppl suggest me using Dataview but I don't know how to apply the change dataview made towards dataset. Any idea is helpful, thank you.
×
×
  • Create New...