Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
1answer
2k views

Asp.NET MVC Html.TextBox refresh problem

i have a problem with asp.net mvc 2 and the html.textboxfor helper. i use the follow code in a form: <%= Html.TextBoxFor(model => model.Zip, new { @class = "txt", id = "zip", tabindex = 1 ...
5
votes
4answers
8k views

MVC3 & Razor - Change DateTime String from “mm/dd/yyyy 12:00:00 AM” to “mm/dd/yyy” in a Textbox

I am trying to stop the Time from showing up in a Birthday Text Field that uses DateTime My Code: (I'm using the Jquery DatePicker) <label for="birthday">Birthday:</label> ...
3
votes
2answers
4k views

Html.TextBoxFor format and css class

The two lines of code below work fine, but I want to combine them. What I mean is: I want to use the @class in the first code line. How can I do that? <%: Html.TextBoxFor(model => ...
1
vote
1answer
190 views

Html.TextBoxFor change color value if error at login

I am new to mvc and I wonder how I can change the background color if the User do@html.TextBoxFor enter the wrong login. I'm using it quite simply. @Html.TextBoxFor(m => m.Email, new ...
1
vote
2answers
665 views

ASP.NET MVC2 — Trouble with Model Binding and Html.Textbox()

ASP.NET MVC Model Binding is still new to me and I'm trying to understand exactly how it works. Right now, I appear to be having problems with a feature of Html.Textbox() Specifically, I have a View ...
1
vote
1answer
467 views

MVC 2 - Name Attributes on HTML Input Field when using Parent/Child Entities

I'm pretty new to MVC 2 using the Entity Framework. I have two tables Company {ID int identity PK,Name nvarchar} and User {ID int identity PK,UserName nvarchar,CompanyID int FK}. A Foreign Key exists ...
0
votes
1answer
3k views

MVC 3 html.TextBoxFor readonly Properties to be set dynamically

<div class="editor-label" style="position:static"> <%: Html.LabelFor(Model => Model.Date, "Date")%> <span style="padding-left:52px"> <%: ...
0
votes
2answers
555 views

ASP.NET MVC Html.TextBoxFor dynamic value

I have a scenario where on a certain view i can have 2 different objects of the same type [Customer] The first one is called customer, the other one is called CustomerApprove. The latter contains a ...
0
votes
1answer
206 views

html.textbox javascript/jquery

I've the below ajax form. In the form I've got 2 textbox. There is a radio button to choose between Unlock and reset the password. All I want to do here is if I select unlock password label and ...
0
votes
2answers
931 views

how to pass Html.TextBox to controller?

May be this simple. But, I've hard time figuring it out. I've a controller with different actions that calls the DB code and return result. I want to pass the value of text box to different actions ...
0
votes
4answers
781 views

How do access the contents html.textbox while on the page in asp.net MVC

i am trying to access the contents on my textbox while on the page. is there anyway of doing that ? Thanx Owais