简体   繁体   中英

Unable to reference all Model objects in MVC View

I have an odd problem whereby the model in my vbhtml file will correctly reference and bring up the model's attributes for 1 item but not for another. FYI, The page is added as a partial page, connected to another vbhtml page.

My page is structured such that I want to list a number of people (beneficiaries), below each question (question text).

I am referencing my Model type using the syntax: @ModelType RHEAL_START.QuestionWithAnswers, so this should automatically allow the model items to be declared when instantiated.

The @ModelType declaration correctly allows the referencing of the 2nd model field (Model.benAnswers) but not the first one I have declared (Model.questionText).

Both items are part of the same model and, I have tried moving the declarations above and below the and headers but, this did not bring up an IntelliSense for the Model.questionText.

I looked at the following post and tried addding in a reference to the Layout file but alas, this did not bring up an IntelliSense either. MVC3 - render view that is not a method in a controller

See the code below. Can anyone suggest where I'm going wrong and what else I can try? If you need more information, please let me know.

@ModelType RHEAL_START.QuestionWithAnswers
@Code
    Layout = "~/Views/MedicalQuestions/MedicalQuestions.vbhtml"
End Code
    <div id="questionPanel">
        @Code 
            Dim qAndARef As Integer = 0
        End Code

            <!-- Show question text and number -->
            <h1><a href="#">Model.questionText</a></h1>

            <table>

                <tr>
                    <td style="font-weight: bold">
                        Beneficiary </td>
                    <td style="font-weight: bold">
                        Yes/No </td>
                    <td style="font-weight: bold">
                        Details </td>
                </tr>

                <!-- !!Iterating over each beneficiary for Medical Question -->

                @For Each benanswer As RHEAL_START.BeneficiaryAnswer In Model.benAnswers

                Html.Partial("../MedicalQuestions/BeneficiaryAnswerPartial", benanswer)

                Next
            </table>


        @*@Html.ValidationSummary()*@

    </div>

@Section Scripts
    @Scripts.Render("~/Scripts/RHEAL/YesNoDropDownValidation.js")
End Section

我对Razor的VB语法不太熟悉,但是好像您在@Model.questionText前面缺少@符号。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM