Advertisement
touhid_xml

Functions ASP.NET C#

Apr 3rd, 2013
288
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.33 KB | None | 0 0
  1. <%@Page Language="C#" %>
  2. <script runat="server">
  3.    
  4.     public string hello()
  5.     {
  6.         string msg = "Hello World<br />\n";
  7.         return (msg);
  8.     }
  9.  
  10.     public int add()
  11.     {
  12.         int x= 10;
  13.         int y = 20;
  14.     return (x + y);
  15.     }
  16. </script>
  17.  
  18. <% Response.Write(hello()); %>
  19. <% Response.Write(add()); %>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement