我使用c#在Visual Studio 2013中进行编码。我有一个全局字符串变量,它是" order"如下所述代码:Globals.order
private void frmPrint_Load(object sender, EventArgs e)
{
// TODO: This line of code loads data into the 'cashierDatabaseDataSet.MALE_LINEUP' table. You can move, or remove it, as needed.
this.mALE_LINEUPTableAdapter.Fill(this.cashierDatabaseDataSet.MALE_LINEUP, Globals.order);
}
现在,我希望mALE_LINEUPTableAdapter
填充cashierDatabaseDataSet
只包含Globals.order
上匹配的字符串值MALE_LINEUP table
。
我在MSDN上发现了类似的情况,它指示我这样编码:
customersTableAdapter.FillByCity(northwindDataSet.Customers, "Seattle");
但它给了我错误:
"方法没有超载'填写'需要2个参数"
请有人帮助我!
答案 0 :(得分:0)
您似乎跳过了创建的一个带有两个参数的<?php
echo
"<form action='' method='post'>
<input type='submit' name='use_button' value='something' />
</form>";
if(isset($_POST['use_button']))
{
echo "hey";
}
?>
方法的演练的第一部分。基本FillByCity
方法只需要一个参数 - 要加载的表。
按照演练中的说明创建类似的Load
方法,并将参数传递给该方法。