为什么我不能使用.Text?

时间:2018-12-02 14:27:24

标签: c# asp.net

我是编程新手,并尝试建立登录页面作为练习。但我遇到一个问题:我无法使用.Text(我不记得这叫什么了)。

这是.aspx

@for ($i = 0; $i < $item->directors_count; $i++)
    <tr>Repeating content here.</tr>
@endfor

这是.aspx.cs

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="LoginPage.aspx.cs" 
Inherits="TugasWEB.LoginPage" %>

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<style type="text/css">
    .auto-style1 {
        height: 30px;}
</style>
</head>
<body>
<form id="form1" runat="server">
    <div>
         <center>
<table>
    <tr>
        <td>
            Username :
        </td>
        <td>
             <input type="text" id="UsernameBox" runat="server" />
        </td>
    </tr>
    <tr>
        <td>
            Password :
        </td>
        <td>
            <input type="password" id="PasswordBox" runat="server" />
        </td>
    </tr>
    <tr>
        <td align="center" colspan="2">
            <input type="submit" id="Masuk" value="Login" 
onserverclick="MasukLogin" />
        </td>
    </tr>
</table>
    </div>
</form>
</body>
</html>

我不知道我的代码是否错误或Visual Studio是否有问题。我希望有人可以提供帮助并解释发生了什么问题(我正在按照一些教程说明进行操作。)

0 个答案:

没有答案