Code:
<script Language="c#" Runat="server">
    void Page_Load()
    {
        Message.Text="hello world";
    }
</script>
Code:
<asp:Label Runat="server" ID="Message"/>
This doesn't work, instead I gotta use the code behind .cs file to define my events... may I be enlightened what actually went wrong?
Thanks...