Asp.net MVC selectlist selected failure and Solution

Source: Internet
Author: User

In the drop-down list of the stronugly typed view of Asp.net MVC, the selected items set in the controller are invalid in the view.
Below is myCode

Allunsendmail
[Acceptverbs (httpverbs. Post)]
Public Actionresult allunsendmail (formcollection collection)
{
Int Sysid = Convert. toint32 (Collection [ " Ddlsysid " ]);
Int Selectedval =- 1 ;
List < Systeminfoentity > Allsys = Systeminfoclient. getall ();
Allsys. insert ( 0 , New Systeminfoentity
{
Sysid =   - 1 ,
Name =   " Select "
});
If (Sysid >   0 )
{
Selectedval = Sysid;
}
Selectlist servicelist =   New Selectlist (allsys, " Sysid " , " Name " , Selectedval );
Viewdata [ " Ddldatasysid " ] = Servicelist;
Viewdata [ " Subject " ] =   String . Empty;
VaR viewdata = Messagequeries. getallunsendmails (sysid, 1 , 15 );
Return View (viewdata );
}

The following list of corresponding views

<% = Html. dropdownlist ( " Ddldatasysid " , (Selectlist) viewdata [ " Ddldatasysid " ]) %>

The problem is that the name of dropdownlist is the same as that of viewdata. You only need to modify the name as follows.

<% = Html. dropdownlist ( " Ddlsysid " , (Selectlist) viewdata [ " Ddldatasysid " ]) %>

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.