177 Topics

Member Avatar for
Member Avatar for arcticM

I was looking at using the Ext JS 4.1 (http://www.sencha.com/products/extjs/) , it promisses to enable developers to use the model-view-controller (MVC) architecture when building their app. can someone give me an example of how I can use the Ext JS 4 with MVC? if I wanted to create a form …

Member Avatar for arcticM
0
206
Member Avatar for vaironl

I'm trying to learn exactly what is MVC or MVC patterns in code. I have done some research to a point where I believe I understand the meaning and use of this idea... But I do not entirely understand the concept. Is MVC( Model View Controller) pretty much, trying to …

Member Avatar for Dean_williams
0
177
Member Avatar for Jesi523

I am having some trouble. I have a Telerik editor where I display I file that is housed in my application. I need to save the changes back to the file. But some things also get saved to back to the database. My save button currently does save back to …

Member Avatar for androtheos
0
274
Member Avatar for sagngh8

Hi All, I should be able to create a default directory inside project's root directory when the application_start method(inside global.asax)is called for my asp.net web application. As IIS users dont have full rights to webroot directory(for directory create) i get access denied error message while trying to create the directory.Also …

0
147
Member Avatar for singularity~

I have been trying to get my MVC C# code to connect to my sharepoint server. I have tried everything and I keep getting this error no matter what I try. The Web application at http://myserver/ could not be found. Verify that you have typed the URL correctly. If the …

Member Avatar for singularity~
0
145
Member Avatar for prem2

Dear all, I am new to mvc architecture Programming concepts.I have doubt that why peoples are using MVC Architecture?.What are the core benefits of using this architecture. Thank you, Regards, prem2

Member Avatar for baig772
0
143
Member Avatar for sagngh8

Does the Application_Start in global.asax called when the new published code is kept in IIS web root for the project, Thanks S.

0
101
Member Avatar for Jesi523

I am trying to write an MVC application. I am rather new to MVC and I am taking the project over from someone else whom started writing it. This is what I am trying to do. I have some html documents that are located within my application. When a user …

0
98
Member Avatar for knowill

Help realize mvc architecture, please. I need site simple on mvc architecture. Here http://www.phpro.org/tutorials/Model-View-Controller-MVC.html#5 is example. i don't understand his. i don't understand how realize site.

Member Avatar for veedeoo
0
170
Member Avatar for germainelol

Hello, I am rather new to this so bare with me! I am currenlty creating a BlackJack game in Java and attempting to use the MVC design when creating it. I have so far created the following classes: - Card: To hold create a card - Deck: To create a …

Member Avatar for JamesCherrill
0
1K
Member Avatar for al41007

Hey! for a school project, came to me the following question: the libopenmetaverse is more directed to any of the components of the MVC (model, view, controller) or apply to any of them? someone can help me with this? thanks

Member Avatar for al41007
0
198
Member Avatar for al41007

Hey! As part of a work came to me the following question: the libopenmetaverse is more directed to any of the components of the MVC (model, view, controller) or apply to any of them? someone can help me with this? thanks

0
69
Member Avatar for sagar2dumbre

Hello i am developing a web app...i am using MVC architecture in my design. i have one form add_Flat.jsp in which admin enter the flat details and it will be stored in database (MS-Access) no other jsp page would be open on submit button.just a message displayed on add_Flat.jsp. How …

Member Avatar for jbennet
0
162
Member Avatar for domingo

sry guys but i am new to MVC i just want to ask if it is possible to assign a connection string to a particular user from a database (Example) i want to restrict user from selecting a table, which can be done by using SQL Managment studio. This is …

0
83
Member Avatar for perfectweb

[CODE] RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule (.*) index.php/$1 [/CODE] my url = localhost/mvc/ i work on windows in xampp i have a problem when i go to my url /404 i thinks i am on localhost/ so it redirects me to localhost/xampp/splash.php but it …

Member Avatar for blocblue
0
305
Member Avatar for 3825

Here is a snippet from my _layout.cshtml file from one of the projects I am involved with... [CODE]<link href="@Url.Content("~/Content/themes/ohl/jquery.ui.all.css")" rel="stylesheet" type="text/css" /> <link href="@Url.Content("~/Content/themes/ohl/jquery.ui.selectmenu.css")" rel="stylesheet" type="text/css" /> <link href="@Url.Content("~/Content/themes/ohl/jquery-ui-1.8.16.custom.css")" rel="stylesheet" type="text/css" /> <link href="@Url.Content("~/Content/themes/ohl/jquery.checkbox.css")" rel="stylesheet" type="text/css" /> <link href="@Url.Content("~/Content/themes/ohl/jquery.safari-checkbox.css")" rel="stylesheet" type="text/css" /> <link href="@Url.Content("~/Content/themes/ohl/jquery.autocomplete.css")" rel="stylesheet" type="text/css" /> <link href="@Url.Content("~/Content/PagedList.css")" rel="stylesheet" …

Member Avatar for 3825
0
233
Member Avatar for gorleone

Hey guys, what the best practice for session check without duplicate code. I mean when check the session in some controller I have to duplicate the code to other controller, and that is not a good idea. <?php [CODE]class Ctrl extends Controller { private function _ses_check() {...} } class Second_ctrl …

Member Avatar for pritaeas
0
162
Member Avatar for galhajaj

Hi :) i am creating a game in C# the game contain a lot of windows and views i heard about mvvm & mvc design pattern but when i search for them i get only things that relative to asp & wpf... and those are (if i dont get it …

Member Avatar for surajrai
0
287
Member Avatar for EdsonF

Hi guys I would like to ask your opinion on the following: What 's the best platform to create Web Business Applications ? ASP. net MVC 3??? I really want to get expert insight on this subject. Regards Edson

0
179
Member Avatar for Mike Tyson

I am having trouble completing This hangman project. It mmost be done using model view controller pattern. Here is what i have so far //Header file declarations import javax.swing.*; import java.awt.*; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.io.FileInputStream; import java.io.IOException; import java.util.Scanner; //Class declaration class HangmanModel extends JFrame implements ActionListener { …

Member Avatar for stultuske
0
258
Member Avatar for php_noob
Member Avatar for kvprajapati
0
101
Member Avatar for php_noob

As I understand VIEWS - is where the HTML. CONTROLLERS - are the methods controlling views. MODELS - is where the "querying" (SQL) that controllers used? Can I ask for a simple example on how to use this M-V-C? actually the example available didn't help much, just more questions. How …

0
88
Member Avatar for Voldemort2

I am trying to add a data(string) to a url in javascript and pass to java controller. In server side i am using spring mvc. The javascript code below redirects to the save.htm with the data concatenated. I couldnt figure out how to catch. Is there any way to pass …

0
118
Member Avatar for Stefano Mtangoo

Hi, I want to write ACL. The access groups and access tasks are arbitrary. That means that any group can be given any access and initially accesses and groups are unknown. Creating groups is easy but I have hit a wall on how do I create/Implement limiting the tasks. Example: …

Member Avatar for Stefano Mtangoo
0
210
Member Avatar for vpgrmer

I am having a time trying to figuring out the routing procedure in MVC 3. I have tried the route.add and even copied the routes.MapRoute given to me by the global.asax.cs page. I get the theory of the following; routes.MapRoute("simple", "("controllername", "action", and "id")"); I have a link on one …

0
77
Member Avatar for Stefano Mtangoo

Since I decided to reinvert the wheel and write a growing MVC, I though having a template class will be cool. Now I have never done any complex templating apart from simple include kind of templating. Now I wrote this base class and here is my concept is explained below. …

Member Avatar for Stefano Mtangoo
0
302
Member Avatar for bevssi

Hi, I need to have VB ASP.NET MVC controller action that receives the pk from the current record, looks up the spouse id and redirects to that record. I'm very inexperienced with MVC so please excuse if this is totally wrong. Any help, comments or suggestions are greatly appreciated. [CODE] …

0
65
Member Avatar for Nirvin M

I am new to ASP.NET MVC. I love and heavily used ASP.NET Web Form's User Controls. But I couldn't find anything to help me in developing MVC User Contols. Please tell me about User Controls in ASP.NET MVC.

Member Avatar for kvprajapati
0
72
Member Avatar for Nitin Daphale

Hi all, We have created websites before in [B]asp.net[/B], but now we are going to create A CRM System (Contacts,Messages,Tasks,Payrolls,Employee Management,Dashboards) using [B]MVC3[/B]. My main concern is customization of screens according to User and flexibility in the sense in future if I want to adopt third party Mail component or …

0
109
Member Avatar for Stefano Mtangoo

I'm making personal MVC framework skeleton I plan to build all sites on it (reserve your question pls on why not CI or CakePHP et al). Now Thinking of session security, one option is database. I was wondering whether storing session data in root_app/tmp/sessions/ would be better as/more than database! …

Member Avatar for Stefano Mtangoo
0
153

The End.