Click here to Skip to main content
15,885,914 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
SQL
@Html.DropDownList("Designation"

                      , new SelectList(ViewBag.DesignationList, "Key", "Value")

                      , "--- Select ---"

                      , new { id="ddlDesigantion", Class = "ddlStyle" }

                  )


above code DropDownList ,first param 'Designation' we can use the id of this control.
but in above code writen html attributes new { id="ddlDesigantion", Class = "ddlStyle" }.
these html attributes id or class only using for dropdownlist event .

can you please explain why this.
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900