Code:<script Language="c#" Runat="server">
void Page_Load()
{
Message.Text="hello world";
}
</script>
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?Code:<asp:Label Runat="server" ID="Message"/>
Thanks...
