Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
958 views
in Technique[技术] by (71.8m points)

c# - In mvc I have this dropdown list. How can I give a empty default value to my dropdown? this is the code i use

This is my code now, it displays all emails from my database but the begin value of my dropdown should be nothing.

            <div class="col-sm-10">
                <select asp-for="client.Email" name="client.Email" id="client.Email">
                    <br />
                    @foreach (var res in clientRepository.GetAllClients())
                    {
                        <option  [email protected]>@res.Email [email protected]</option>
                    }

                </select>
                <span asp-validation-for="client.Email" class="text-danger"></span>
            </div>
        </div>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...