Model–View–Controller (MVC) is an architectural pattern used in software engineering. Use the more specific [asp.net-mvc] tag (ASP.NET MVC) instead, if applicable.
0
votes
0answers
3 views
MVC4 create two diffirent UserProfile table
after deploy my site to Plesk host. The MVC4 creates 2 UserProfile table like this:
dbo.UserProfile
mysqlusername.UserProfile
what is the problem and how i can fix this?
this is my model:
...
0
votes
0answers
10 views
How can I extend a view in cakePHP?
I'm trying to create the most basic extended view possible based on the cakePHP book.
But it's not working and I cannot figure out why.
Parent view:
//Pages/home.ctp
<h2>This is a Map ...
0
votes
1answer
10 views
Highcharts tooltip functionality lost from version 2.2.1 to version 3.0.1
I'm displaying multiple charts on the screen, in a .NET MVC application, using Highcharts 3.0.1. Problem that I have is that the tool tips are not destroyed when moving from one chart to another one ...
0
votes
0answers
10 views
authentication after implementing Secure Token Service in MVC4
I have implemented LocalSTS in MVC4 using identity and access tool in MVC4.
After successfully login in the website it is throws an error as
HTTP Error 401.0 - Unauthorized
You do not have ...
0
votes
1answer
25 views
taking id and value from a lot of radiobutton by post
In the view I have a lot of RadioButtons and the id is the unique for each one. when user choose one of those in controller I would like to take the ID and VALUE how i can do that.... i try with ...
0
votes
2answers
28 views
ASP.NET MVC disable dropdownlist on page load
I'm using ASP.NET MVC 4 and jQuery to achieve this.
What I'm trying to do is to disable or enable a dropdownlist based on if a checkbox is checked or not.
I can get this working, however I can't ...
2
votes
1answer
14 views
Redirect to ReturnUrl in MVC 2
I have this URL
http://localhost:49460/Account/Login?ReturnUrl=%2fusers%2fuser%2f5199
How do I redirect to the view Users/User/5199?
1
vote
1answer
19 views
how we can take radionButtons id and value by post
@Html.RadioButton("BookType", "1", new { id = "100" })
<br>
Above code generates Below code
<br/>
< input id="100" name="BookType" type="radio" value="1" >
and the question is how ...
0
votes
0answers
7 views
EXTJS4: App is not loading when TreeView is embed
My App works fine, if the TreeView "TreeCreateMenu" is not embed. Since it is embed, the app stocks at the Browser-Web-Console at the Point from the etjs-directory "Trigger.js". But no error is ...
0
votes
1answer
14 views
mvc c# url change makes me signed in as another user, how to prevent this?
I am using following code for user authentication
Home Controller:
------------------
[AllowAnonymous]
[HttpPost]
public JsonResult JsonLogin(SecurityDTO usr)
{
var ...
0
votes
1answer
23 views
difference between Spring mvc redirect and general jsp name return
Please consider these code snippets
protected ModelAndView handleRequestInternal(HttpServletRequest request,
HttpServletResponse response) throws Exception {
return new ...
0
votes
0answers
22 views
MVC routing mystery
I have a simple app that was created using MVC4 and Internet Application template. I excluded the followings and deployed to a IIS7 server.
/App_Start/AuthConfig.cs
...
0
votes
0answers
7 views
Using one component view inside the view of a different component
So here is the issue, maybe somebody can guide me in the correct direction?
I have two components. I am trying to display a view from the first component on a specific section of the second ...
0
votes
1answer
16 views
MVC linq query and dropdown lists
I am trying to get details from the database to be edited. It actually works fine, my problem is that I am also trying to populate data from the db to two dropdown lists (these dropdown lists work ...
0
votes
2answers
29 views
MVC / jQuery - Action not being hit when called via $.ajax()?
I'm trying to do the simplest of things in MVC using jQuery: submit a form.
Here's my code that calls to the action:
var url = "@Url.Action("Save", "Material")";
$.ajax({
url: url,
data: ...