Possible Duplicate:
strong-typed profile values in ASP.NET membership (MVC)
Currently i am inserting data in profile by using this profile.SetPropertyValue("prop", data);
but i want to know that is there any way so that i can use something like profile.prop = data;
instead of profile.SetPropertyValue("prop", data);
to insert data in profile and also get `profile properties in dropdownlist.