Click here to Skip to main content
15,893,161 members

Comments by zaksan (Top 3 by date)

zaksan 29-Oct-13 5:01am View    
I have a Table with several fields,in the table in a field(data type varchar()) I want to save Image in my MVC2 application Using this field. How can I do that? I am New in MVC.Please help me with an example step by step.
zaksan 24-Oct-13 0:45am View    
<div class="editor-field">
<%: Html.TextBoxFor(model => model.Name)%>
<%: Html.ValidationMessageFor(model => model.Name) %>
</div>
Can I use Drop Down List In My Create view Insted of this?
zaksan 24-Oct-13 0:44am View    
Thanks, But I can do that. I want to save data that is showing in the Drop down list into another table of Same database using create view.

Can I use Drop down list insted of
"<div class="editor-field">
<%: Html.TextBoxFor(model => model.Name)%>
<%: Html.ValidationMessageFor(model => model.Name) %>
</div>"
This In Create View?
Please help...