1
vote
2answers
63 views
ASP.NET MVC Model confusion
Hi,
I'm new to MVC and learning the ropes around how to use it properly. I have a dilema.
I have a model that describes a contact (in C#) I can get that out of the form for creating a new contact, …
0
votes
3answers
76 views
convert string to date without time
This line
System.DateTime.Parse("09/12/2009");
convert date (string) to 9/12/2009 12:00:00 AM. How can I get a date in the form 9/12/2009.
after explanations I do:
DateTime dt = …
0
votes
4answers
42 views
eCommerce for ASP.NET, RoR or other?
Hey folks
I'm looking for an eCommerce framework with as many of the following features as possible.
Categories, sub-categories and product pages (easy, I know!).
ePDQ/Barclays Payment Gateway …
0
votes
1answer
22 views
asp.net mvc how to save data from jquery control
I am using the TinyMCE control in a MVC page, and now I want to save the content of the control (hopefully with ajax so the page is not rendered again)... I have some javascript that looks like this:
…
0
votes
2answers
19 views
Event name when IBOutlet is assigned in the controller
I would like to run some logic in my Controller class once all IBOutlets get assigned. What method do I need to override in the Controller class to receive this event?
Thanks,
Rui
0
votes
2answers
51 views
MVC model in MFC
how are the classses in MFC match the model-view-control pattern ?
the model is suppose to handle the Business Logic , the control suppose to be some kind of mediator and the view suppose to be the …
0
votes
2answers
73 views
MVC pattern and $_POST variables
Hi,I am building a php/mysql based framework and cms , and I got stucked into passing variables using post method , from a form located in one controller, to another controller. More exactly , i built …
1
vote
2answers
62 views
MVC architecture for front-end
Hi!
I am writing application in PHP (+ MySQL database), but it gonna be mainly AJAX aplication. So, I am wondering, how to create frontend? Frontend also in MVC? Is it possible?
0
votes
1answer
7 views
retrieve LocalResource key and pass to Html.ActionLink linkText
hi, i want retrieve LocalResource key and pass to Html.ActionLink linkText.but i dont know.
0
votes
2answers
52 views
Trouble passing complex data between view and controller in ASP.NET MVC
Here's a simplification of my real models in ASP.NET MVC, that I think will help focus in on the problem:
Let's say I have these two domain objects:
public class ObjectA
{
public ObjectB …
0
votes
2answers
30 views
adding values to a select box from a controller function (Ruby on Rails)
I have a Rails web application with a select box:
<%= select_tag :foo %>
I'm looking to write a function in the controller which would populate this select box with some values. What code …
0
votes
0answers
16 views
Help with jQuery Grid in an ASP.Net MVC 2 RC with areas
I've followed Phil Haack's demo of jQuery Grid successfully in an mvc 2 rc project without areas. Now I'm trying to implement the same code in an areas project but the data is not being passed to the …
0
votes
3answers
92 views
What is MVC in Ruby on Rails?
Could someone please explain MVC to me in Ruby on Rails, in layman terms. I am especially interested in understanding the Model in MVC (Can't get my head around the model)
Thank you in advance.
0
votes
2answers
29 views
Add to <body> tag of a cakePHP app
Hello,
I have an app where I need to call some JS in the onLoad event of the BODY tag of two forms. However, I can't find how to modify the tag for just them. Does anyone know?
Frank
0
votes
5answers
61 views
Need to assign multiple attributes to records - should I opt for one table or multiple tables?
I am using an MVC pattern to represent a table with many records of music albums. To each music album there are attributes (genre, artist, ratings, etc). Each attribute can have multiple values (so …
