我试图根据用户输入的文本框值显示Mysql数据库中的数据,如下例所示
我现在需要什么,因为我是asp.net中的begginer,用于显示数据的最快的aproche是什么?
哪个更适合使用div或table标签进行布局?
是他们的任何代码吗?喜欢用标签来显示输出是个好主意吗? 或者他们是更好的东西?
代码标记
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="AccountInquiry.aspx.cs" Inherits="BankingDemo.AccountInquiry" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Banking Site (Demo)</title>
</head>
<body>
<form ID="from" runat="server">
<div>
<asp:Label ID="lbl_ID" runat="server">Enter ID</asp:Label>
</div>
<asp:TextBox ID="ID" runat="server"></asp:TextBox>
<asp:Button ID="QurAcc" runat="server" Text="Query" OnClick="QurAcc_Click" />
<asp:Label ID="lbl_CityName" runat="server"></asp:Label>
</form>
</body>
</html>
c#code
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data;
using System.Configuration;
using MySql;
using MySql.Data;
using MySql.Data.Types;
using MySql.Data.MySqlClient;
namespace BankingDemo
{
public partial class AccountInquiry : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
public void get_info()
{
string connstr = ConfigurationManager.ConnectionStrings["ConnConfig"].ToString();
string cmdtxt = @"select Name,CountryCode,District,Population from world.city where id = @ID_param";
string temp = null;
try
{
using (MySqlConnection conn = new MySqlConnection(connstr))
using (MySqlCommand cmd = new MySqlCommand(cmdtxt))
{
cmd.CommandType = CommandType.Text;
cmd.Parameters.AddWithValue("@ID_param", ID.Text);
cmd.Connection = conn;
conn.Open();
MySqlDataReader reader = cmd.ExecuteReader();
while (reader.Read())
{
temp += "<br />";
temp += reader["Name"].ToString();
temp += reader["CountryCode"].ToString();
temp += reader["District"].ToString();
temp += reader["Population"].ToString();
temp += "<br />";
}
conn.Close();
}
lbl_CityName.Text = temp;
}
catch (Exception ex)
{
//ex.Message;
}
}
protected void QurAcc_Click(object sender, EventArgs e)
{
get_info();
}
}
}
答案 0 :(得分:1)
正确的方法是创建四个标签,如:
<br/>
<asp:Label ID="lblCityName" runat="server"></asp:Label>
<br/>
<asp:Label ID="lblCountry" runat="server"></asp:Label>
<br/>
<asp:Label ID="lblDistrict" runat="server"></asp:Label>
<br/>
<asp:Label ID="lblPopulation" runat="server"></asp:Label>
C#:
while (reader.Read())
{
lblCityName.Text = "Name: " + reader["Name"].ToString();
lblCountry.Text = "Country Code: " + reader["CountryCode"].ToString();
lblDistrict.Text = "District " + reader["District"].ToString();
lblPopulation.Text = "Population: " + reader["Population"].ToString();
}