Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <%@Page Language="C#" %>
- <script runat="server">
- public string hello()
- {
- string msg = "Hello World<br />\n";
- return (msg);
- }
- public int add()
- {
- int x= 10;
- int y = 20;
- return (x + y);
- }
- </script>
- <% Response.Write(hello()); %>
- <% Response.Write(add()); %>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement