- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="check.aspx.cs" Inherits="check" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<style>
h1 {
font-family: 'Lucida Handwriting';
text-align: center;
margin: 50px;
font-size: 50px;
}
.word {
font-family: 'Lucida Handwriting';
margin: 50px;
font-size: 20px;
}
body {
background-image: url("http://3.bp.blogspot.com/-3UIjuTrbAI8/Uihk5uaH_lI/AAAAAAAAAuk/gcn5XlQ9kyI/s640/Top+10+best+Simple+Awesome+Background+Images+for+Your+Website+or+Blog2.jpg");
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
}
.topnav {
overflow: hidden;
background-color: black;
}
.transbox {
margin: 30px;
background-color: white;
border: 0px;
opacity: 0.75;
/*filter: alpha(opacity=50);*/
}
.topnav a {
float: left;
display: block;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
.topnav a:hover {
background-color: burlywood;
color: black;
}
.topnav a.active {
background-color: #4CAF50;
color: white;
}
.topnar a {
float: right;
background-color: black;
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
.topnar a:hover {
background-color: burlywood;
color: black;
}
.txtstyle {
width: 300px;
padding: 12px 20px;
margin: 8px 0;
box-sizing: border-box;
border: 3px solid #ccc;
-webkit-transition: 0.5s;
transition: 0.5s;
outline: none;
}
.txtstyle:focus {
border: 3px solid #555;
}
.btnlogout {
width: 100px;
height: 30px;
font-family:'Lucida Handwriting';
float:right;
}
.auto-style2 {
width: 146px;
}
.auto-style3 {
width: 233px;
}
.auto-style5 {
width: 172px;
}
.auto-style6 {
width: 141px;
}
.auto-style7 {
width: 233px;
height: 26px;
}
.auto-style10 {
width: 141px;
height: 26px;
}
.auto-style11 {
height: 26px;
width: 140px;
}
.auto-style14 {
width: 175px;
}
.auto-style15 {
height: 26px;
width: 175px;
}
.auto-style16 {
height: 26px;
width: 172px;
}
.auto-style17 {
height: 26px;
width: 146px;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<div class="topnar">
<a href="adminpage.aspx">Manage</a>
<a href="orderlist.aspx">Orderlist</a>
</div>
<div class="topnav">
<a class="active" href="menuhome.aspx">Home</a>
<a href="menuchicken.aspx">Chicken & Fish</a>
<a href="menupasta.aspx">Pasta</a>
<a href="menuwrap.aspx">Sandwich & Wrap</a>
<a href="menuside.aspx">Side Order</a>
<a href="menusoup.aspx">Salad & Soup</a>
</div>
<div>
Order ID :
<asp:TextBox ID="txtorid" runat="server"></asp:TextBox>
Secret Code :
<asp:TextBox ID="txtcode" runat="server"></asp:TextBox>
<asp:Button ID="btncheck" runat="server" Text="Check" OnClick="btncheck_Click" />
<br />
<br />
</div>
<div class="transbox">
Reservation details:
<table border="1">
<tr>
<td class="auto-style7">ID</td>
<td class="auto-style15">Reserved Date</td>
<td class="auto-style11">Reserved Time</td>
<td class="auto-style10">Name</td>
<td class="auto-style11">Handphone</td>
<td class="auto-style17">TableNumber</td>
<td class="auto-style16">Pax</td>
</tr>
<asp:ListView ID="listView" runat="server">
<ItemTemplate>
<tr>
<td><%# Eval("ID") %></td>
<td><%# Eval("Datebook") %></td>
<td><%# Eval("TimeFrom") %></td>
<td><%# Eval("Name") %></td>
<td><%# Eval("Handphone") %></td>
<td><%# Eval("TableNumber") %></td>
<td><%# Eval("Pax") %></td>
</tr>
</ItemTemplate>
</asp:ListView>
</table>
<br />
<br />
Food Ordered:
<table border="1">
<tr>
<td>Food ID</td>
<td>Food Name</td>
<td>Quantity</td>
<td>Price</td>
<td>Total</td>
</tr>
<asp:ListView ID="listView1" runat="server">
<ItemTemplate>
<tr>
<td><%# Eval("productid") %></td>
<td><%# Eval("Foodname") %></td>
<td><%# Eval("quantity") %></td>
<td><%# Eval("price") %></td>
<td><%# Eval("total") %></td>
</tr>
</ItemTemplate>
</asp:ListView>
</table>
</div>
</form>
</body>
</html>
嗨,这是我的代码。我使用子查询来组合 SQL 语句中的某些字段,但无法获取子查询后的值。另外,我收到此错误:
DataBinding: 'System.Data.DataRowView' does not contain a property with the name 'productID'
有人知道怎么解决吗?我已经检查了所有列名称。该sql语句可以在MYSQL数据库中运行,但不能在代码中运行。谢谢!!
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data.SqlClient;
using MySql.Data.MySqlClient;
using System.IO;
using System.Text;
using System.Data;
using System.Configuration;
public partial class check : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
MySqlConnection connection = new MySqlConnection();
MySqlCommand cmmd = new MySqlCommand();
connection.ConnectionString = "SERVER=localhost;DATABASE=pf;UID=root;PASSWORD=password;";
connection.Open();
string cmdText = "SELECT * FROM booking where secret = '"+ txtcode.Text + "' and id = '"+ txtorid.Text +"'";
MySqlDataAdapter adapt = new MySqlDataAdapter(cmdText, connection);
DataTable t = new DataTable();
adapt.Fill(t);
listView.DataSource = t;
listView.DataBind();
listView.Visible = true;
connection.Close();
MySqlConnection Conn = new MySqlConnection("Server=localhost;Database=pf;Uid=root;Pwd=password;");
MySqlCommand Command = new MySqlCommand();
Conn.Open();
Command.Connection = Conn;
Command.CommandText = "SELECT productid, (select name from menu where id = productid)as Foodname, price, quantity, price * quantity as total from salesdetail where salesid = (select id from booking where secret = 'ypnok3bd' and id = 'SSD00000000000000001') ";
string productid = Command.ExecuteScalar().ToString();
string Foodname = Command.ExecuteScalar().ToString();
string price = Command.ExecuteScalar().ToString();
string total = Command.ExecuteScalar().ToString();
DataTable d = new DataTable();
adapt.Fill(d);
listView1.DataSource = d;
listView1.DataBind();
listView1.Visible = true;
Conn.Close();
}
protected void btncheck_Click(object sender, EventArgs e)
{
}
}
最佳答案
我假设您对 DataAdapter 使用了错误的命令或使用了错误的列。因为您希望在 View 中显示 ProductID
但另一个 SelectCommand 选择该列。您用于适配器的适配器使用 SELECT * FROM booking
,该表的主列是 Id
。
除此之外,您不能使用 ExecuteScalar
从选择查询接收多个不同的列。仅返回第一条记录的第一列。相反,您可以使用DataReader
:
Command.CommandText = "SELECT productid, (select name from menu where id = productid)as Foodname, price, quantity, price * quantity as total from salesdetail where salesid = (select id from booking where secret = 'ypnok3bd' and id = 'SSD00000000000000001') ";
using(var rd = Command.ExecuteReader())
{
if(rd.Read())
{
string productid = rd.GetInt32(0).ToString();
string foodname = rd.GetString(1);
string price = rd.GetDecimal(2).ToString();
string total = rd.GetDecimal(3).ToString();
}
}
我已经推测了列的类型。如果出现异常,请进行相应更改。
关于c# - 我得到数据绑定(bind) : 'System.Data.DataRowView' does not contain a property with the name 'productID' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46661069/
您好,下面是我在 AWS 中创建启用了弹性 IP 的实例的模板。但是我不确定我哪里出错了。我已经通过在线 json 验证器验证了 json,仍然面临问题请帮忙 { "AWSTemplateForm
标题有点乱,但已经说明了一切。我想在一个属性的属性上有一个属性观察器: class A { var b: B init() { b = B() } fu
假设我的一个 Controller 中有这样的方法: [Route("api/Products")] public IQueryable GetProducts() { return db.P
这有效: // @flow import React, {Component} from 'react'; type Props = {}; class Delete extends Componen
我有一个 ViewModelBase 类,我在其中为 INotifyPropertyChanged 接口(interface)定义了 RaisePropertyChanged 方法。大多数 MVVM
我创建了类: class StorageBase { public Queue Slices {get;set;} } 和 wpf 自定义控件,它具有 StorageBase 类型的依赖属性
我的 java 应用程序问题是 log4j2 系统日志不是写在 'local1.log' 中而是'消息'。我的/etc/rsyslog.conf 在/etc/rsyslog.conf 中配置为 'lo
为什么需要在对象中使用 this.property = property ?它是用来定义对象的“外部世界”的属性吗? function Person(property) { this.property
摘要: 这个问题是关于属性的继承与从彼此继承属性的类的内部和外部的不同读/写访问相结合。 详细信息: 我有一个类 A 和另一个继承自 A 的类 B。 A 中声明了属性someProperty。我希望该
我正在开发 ASP.NET MVC 应用,设计域模型,使用(测试)新的 EF Code First 功能。 我有一个可能有也可能没有截止日期的事件实体,处理它的最佳方法是什么? 1 个属性: publ
我在配置项目时经常使用它们,但大多数情况下都是按照指示添加 fragment 。我完全不知道哪个文件到底是做什么的。谁能清楚地说明每个文件的用途。 到目前为止我认为 local.properties
在运行 python 文件以使用 rasa nlu 训练文件时,我在命令提示符下收到此错误 我目前正在使用 Windows 10 rasa_core==0.8.2 rasa_nlu==0.11.4 p
我在这方面遇到了一些麻烦,尽管我已经搜索了答案,但还是找不到。 为了使用 AsyncAppender,我看到了很多不同的 log4j 配置,无论如何,它们都与 .properties 配置文件无关。
我正在编写一个 Python 类,并使用 @property 装饰器为该类创建属性。 我在文档中没有找到太多关于这个装饰器的信息,但是从我可以从 Stack Overflow 和我的 Python l
在 gradle 任务中,我可以创建这样的路径: System.env.FOLDER_PATH + '/subFolder' 但我想在我的 gradle.properties 中设置它,所以它会像 s
如何在属性文件的 log4j2 中创建键值对? 我知道在 log4j 版本 1 中它是这样完成的: log4j.appender.x.additionalFields={'key': 'value'}
我想通了 struct PropertyTest { @property int x() { return val; } @property void x( int newVal )
我有 REST (Jersey) webservice,它利用了一些编码/解码到/来自 XML 的数据对象。数据对象位于 webservice war 所依赖的单独项目/jar 中。 我使用 MOXy
我正在创建一个 LinkedList 类: function LinkedList(){ ... 有什么区别: this.addNode = function(data){
关于语义的快速问题:) 如果我正在编写一个协议(protocol),这是首选: // (a) @protocol MyProtocol @property (nonatomic, copy) NSSe
我是一名优秀的程序员,十分优秀!