不能隐式将SananPos类型转换为Void

时间:2014-07-17 09:06:41

标签: c# asp.net

protected void btnSave_Click(object sender, EventArgs e)
{
    if (txtMagazaNo.Text != string.Empty && txtTerminalNo.Text != string.Empty && txtKullaniciAdı.Text != string.Empty &&
        txtSifre.Text != string.Empty && txtParola.Text != string.Empty && comboCompany.SelectedIndex > -1 && comboCompany.SelectedIndex > -1 && comboBank.SelectedIndex > -1 && DatePicker3.SelectedDate != null && LstTaskOfUsers.Items.Count > 0)
    {

        if (sanalPosList == null && txtMagazaNo.Text != string.Empty && txtTerminalNo.Text != string.Empty)
        {
            SanalPos SanalPosControl = SanalPos.InsertSanalPos(sanalPosList[comboCompany.SelectedIndex].Id, sanalPosList[comboBank.SelectedIndex].Id, txtMagazaNo.Text, txtTerminalNo.Text, txtKullaniciAdı.Text, txtParola.Text, txtSifre.Text, "", "", txtNot.Text, 1, DateTime.Now, "");
            if (sanalPosList == null)

                SanalPos.InsertSanalPos(sanalPosList[comboCompany.SelectedIndex].Id, sanalPosList[comboBank.SelectedIndex].Id, txtMagazaNo.Text, txtTerminalNo.Text, txtKullaniciAdı.Text,


                txtParola.Text, txtSifre.Text, "", "", txtNot.Text, 0, DateTime.Now, "");
            }

    }

1 个答案:

答案 0 :(得分:2)

这种方法极有可能:

SanalPos.InsertSanalPos();

返回类型为void

如果您需要它返回一些内容,您需要将返回类型更改为SanalPos并返回相同类型的对象。