1

私は MVC 3 でホテル予約プロジェクトに取り組んでいます。ここに部屋を表示します。 ここに画像の説明を入力

クリックしてロムを予約すると、次のようになります。

ここに画像の説明を入力

しかし、私がやりたいことは、予約フォームの部屋ボックスで直接選択した部屋の番号を取得することです。

予約用の私の作成ビューは次のとおりです。

@using (Html.BeginForm()) {
@Html.ValidationSummary(true)
<fieldset>
    <legend>Reservation</legend>

    <div class="editor-label">
        @Html.LabelFor(model => model.Room_ID, "Room")
    </div>
    <div class="editor-field">
        @Html.DropDownList("Room_ID", String.Empty)
        @Html.ValidationMessageFor(model => model.Room_ID)
    </div>

    <div class="editor-label">
        @Html.LabelFor(model => model.Guest_ID, "Client")
    </div>
    <div class="editor-field">
        @Html.DropDownList("Guest_ID", String.Empty)
        @Html.ValidationMessageFor(model => model.Guest_ID)
    </div>

    <div class="editor-label">
        @Html.LabelFor(model => model.Data_Check_in)
    </div>
    <div class="editor-field">
        @Html.EditorFor(model => model.Data_Check_in)
        @Html.ValidationMessageFor(model => model.Data_Check_in)
    </div>

    <div class="editor-label">
        @Html.LabelFor(model => model.Data_Check_out)
    </div>
    <div class="editor-field">
        @Html.EditorFor(model => model.Data_Check_out)
        @Html.ValidationMessageFor(model => model.Data_Check_out)
    </div>



    <div class="editor-label">
        @Html.LabelFor(model => model.Preference_ID, "Preferinte")
    </div>
    <div class="editor-field">
        @Html.DropDownList("Preference_ID", String.Empty)
        @Html.ValidationMessageFor(model => model.Preference_ID)
    </div>

    <div class="editor-label">
        @Html.LabelFor(model => model.Price)
    </div>
    <div class="editor-field">
        @Html.EditorFor(model => model.Price)
        @Html.ValidationMessageFor(model => model.Price)
    </div>

    <div class="editor-label">
        @Html.LabelFor(model => model.Card_ID, "Card_de_credit")
    </div>
    <div class="editor-field">
        @Html.DropDownList("Card_ID", String.Empty)
        @Html.ValidationMessageFor(model => model.Card_ID)
    </div>

    <p>
        <input type="submit" value="Create" />
    </p>
</fieldset>

}

4

1 に答える 1

2

ビュー モデルを使用して、最初のページからフォーム ページにルーム ID を渡すことはできますか?

于 2012-04-25T16:53:45.510 に答える