Architect's Log

I'm a Cloud Architect. I'm highly motivated to reduce toils with driving DevOps.

ASP.NETをはじめました

ASP.NETの案件に過去いくつか関わりましたが、基礎からやり直したく以下の書籍を元に進めていきます。

MakeItUpper.aspxのソースコード

<% @Page Language="c#" %>

<script runat="server">
private void MakeUpper(object sender, EventArgs e) {
    string buf = TheString.Value;
    TheResult.InnerText = buf.ToUpper();
}
</script>

<html>
<body>
<form runat="server">
<input runat="server" id="TheString" type="text" value="" />
<input runat="server" id="Button1" type="submit" value="大文字にする" OnServerClick="MakeUpper" />
<span runat="server" id="TheResult" />
</form>
</body>
</html>

ボタンクリック前


ボタンクリック後