i trying format items in shopping cart display in listbox in asp.net using ms visual studio 2010. program displays them elements of each item concatenated string, works less elegant like. my display function within cartitem class is: public function display() string return product.productname & "; " & product.productid & ", (" + quantity.tostring() & " @ " & formatcurrency(product.unitprice) & " each) " end function i told "embed html format string. add table, trs , tds , css." looked "embed html" in w3schools , got nothing seemed relevant. not find in class textbook. when try insert statements tags , visual studio transforms them , . tried putting statements response write follows: response.write("<html>") response.write("<table>") response.write("<tr>") response.write("<td>") response.write("...
Comments
Post a Comment