<!-- This is a client-side HTML comment. --%gt; <%-- This is a server-side comment. --%> // This is a C# or JavaScript comment. // The whole line is commented out. /* This is a CSS comment It also works in C# and JavaScript. */
txtDisplay.Text = col[12];
abc | def |
hij | klm |
<asp:Table ID=Table1 runat=server> <asp:TableRow runat=server> <asp:TableCell runat=server>abc</asp:TableCell> <asp:TableCell runat=server>def</asp:TableCell> </asp:TableRow> <asp:TableRow runat=server> <asp:TableCell runat=server>hij</asp:TableCell> <asp:TableCell runat=server>klm</asp:TableCell> </asp:TableRow> </asp:Table>
litDisplay.Text += Table1.Rows[1].Cells[0].Text;
INSERT INTO Persons VALUES ('Alice', 'F', 25);
DELETE FROM Persons WHERE Name = 'Alice';
UPDATE Persons SET Age = Age + 1 WHERE Name = 'Alice';