私はこの機能を作っています。私はRazorとC#で作業しています。私はこのようなサプライヤーをプリントアウトしていますidを含むelse文から印刷する
@{
var pointShop = Model.Order.OrderLines[0];
string supplier == null;
if (pointShop.SupplierId = 27942) {
supplier = "If any question, please contact us";
}
else if (pointShop.SupplierId = 6543) {
supplier = "Please call us";
}
else if (pointShop.SupplierId = 8723) {
supplier = "You are welcome to write us";
}
}
:
<span>
@supplier
</span>
があるため、下記のいずれかの番号の仕入先を持っている場合、私は、仕入先をbelongsToのテキストをプリントアウトする必要があります私の注文では100%のIDが27942です。しかし、私はテキストのプリントアウトを取得していません。ちょうど空のフィールド。私がここで間違っていることは何ですか?
これはASP.NET/Razorテンプレートであるはずですか? – UnholySheep
'@ supplier'はあなたが必要とするものです – haim770
if/elsesが' = 'という代入を使っているのか、' == 'でないのかを確認すると、何が起こっているのか疑問に思うでしょう。また、 'string supplier = string.Empty'を実行する必要があるかもしれませんが、現在はそれを比較して宣言していません。 – Bardicer