docs:programming:hello_world_examples

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
docs:programming:hello_world_examples [2006/12/30 19:41] billhdocs:programming:hello_world_examples [2008/08/03 00:25] (current) – external edit 127.0.0.1
Line 22: Line 22:
  printMyString();  printMyString();
 ?> ?>
 +</code>
 +
 +===== ASP.NET =====
 +<code asp>
 +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
 + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
 +<html>
 + <head>
 + <title>Hello World - ASP.NET</title>
 +<script runat="server" language="VB">
 + Sub Page_Load(sender As Object, e As EventArgs)
 + timeLabel.Text = DateTime.Now.ToString()
 + End Sub
 +</script>
 + </head>
 + <body>
 + <p>Hello World!</p>
 + <p>The time is now: 
 + <asp:Label runat="server" id="timeLabel" /></p>
 + </body>
 +</html>
 </code> </code>
  
  • docs/programming/hello_world_examples.1167532864.txt.gz
  • Last modified: 2008/08/03 00:25
  • (external edit)