160 reputation
8
bio website
location Bridgeport, WV
age 30
visits member for 8 months
seen 14 hours ago
stats profile views 30

May
7
comment Session in mvc + URL
Are you using Session? My intial thought is maybe when you debugged, you stopped in the last View you debugged. By starting up debug again, you would automatically land on that same View. Some code would help too.
May
6
comment disable default validation for dropdown
Check the defaults of how a DropDownListFor works next time before you jump to conclusions. By default, you have an int associated with the list. The default value for the first item isn't always 0, it might be null. In this case, the user needed to use int?. Again, I'd read up before you assume it's user error.
May
6
awarded  Critic
Apr
16
comment What is the best way to organise Partial Views in a file structure?
Ah, I see. I have a similar issue. I inherited a massive amount of them in my current project. For now, I've let it be as is because it was easier to deal with (mixing partials and views). I would almost suggest making a folder for them but at the same time I'm not sure. Sorry I can't be anymore help than that.
Apr
16
answered What is the best way to organise Partial Views in a file structure?
Apr
10
comment How to convert a float number to integer by mvc3?
Just a dumb question here but why don't you save it as an interger if you're going to display it as an integer? That seems counterproductive.
Apr
9
comment How to create and use editor template in mvc3
As far as I know, it doesn't work that way. Every example and time I've used EditorTemplates, I've always used them the way I mentioned.
Apr
8
answered How to create and use editor template in mvc3
Apr
5
comment Change value of disabled checkbox
Lol, yeah. Razor is nice and all but has some serious pitfalls they don't warn you about when working with jQuery/javascript.
Apr
4
comment Change value of disabled checkbox
Thanks a lot! The problem was the fact I was using @Html.DisplayFor. When I switched to an input of checkbox type, it worked perfectly for me. Stupid DisplayFor always seems to cause me issues anymore.
Apr
4
accepted Change value of disabled checkbox
Apr
4
comment Change value of disabled checkbox
This sounds closer to what I was reading. The checkbox is part of a form. I'll try taking it out to see what happens.
Apr
4
asked Change value of disabled checkbox
Mar
28
comment Easy way to implement Date/Time picker
Lol, you beat me to it.
Mar
25
accepted Logic to do Backordering system
Mar
21
accepted Form won't submit once error checking breaks it
Mar
21
comment Form won't submit once error checking breaks it
Thanks for the help. After I read what you had I understood completely. Thanks again.
Mar
21
comment Form won't submit once error checking breaks it
Perfect! Thanks for the help.
Mar
21
comment Form won't submit once error checking breaks it
The function is called whenever a specific button is clicked. I added it in with my last edit.
Mar
21
revised Form won't submit once error checking breaks it
deleted 253 characters in body