我正在为一个小型聊天应用程序创建一个自定义工具栏,它有一个摄像头按钮,一个文本域和一个发送按钮。所有功能都有效,但我仍然试图获得发送按钮位置。
相机按钮需要在左侧对齐,而发送按钮需要在右侧对齐。
我得到了这种工作,但无法让发送按钮正确对齐,我似乎无法将其移动到正确的位置。
我尝试过灵活的间距和固定的间距(目前在我的代码片段中)没有成功。
public ActionResult Index(User person)
{
string constring = @"Provider=Microsoft.ACE.OLEDB.12.0;Data Source= path";
string cmdText1 = "select * from tablename where EmployeeID='" + person.EmployeeId + "'";
using (OleDbConnection connection = new OleDbConnection(constring))
{
OleDbCommand command = new OleDbCommand(cmdText1, connection);
connection.Open();
OleDbDataReader reader = command.ExecuteReader();
List<User> x=new List<User>();
while (reader != null && reader.Read())
{
//user table holds eid,type,date
User d1 = new User
{
EId = reader.GetValue(0).ToString(),
Type = reader.GetValue(1).ToString(),
Date = reader.GetValue(2).ToString()
x.Add(d1);
};
}
ViewBag.ListData = x;
reader?.Close();
con.Close();
return View("Home");
}
}
In View:
@foreach (var p in ViewBag.ListData)
{
<tr>
<th height="30">@p.EId</th>
<th>@p.Type</th>
<th>@p.Date</th>
</tr>
}
希望有人能够发现我正在犯的最可能的愚蠢错误,并且无法解决。