Tagged Questions
0
votes
0answers
19 views
Membership.GetUser() + Shared Memory Provider, error: 0
I have a ASP.NET MVC 4 application, whcih does most data access via entity framework. It uses the default membership provider configured via the Web.Config. Occasionally, I get:
A transport-level ...
0
votes
1answer
23 views
how to call custom method automatically in global.asax
Here is my code and i want to call the my custom method (Application_My()) automatically when application is loaded/refresh every time like Application_OnEndRequest().
Thanks in advance.
<%@ ...
0
votes
1answer
26 views
How can I create a search functionality with partial view in asp.net mvc 4
I am using ASP.NET MVC 4 with entity framework model first.
In my "Masterpage.cshtml" I want to have a partial view which contains a textbox and a button.
The search is looking for the items title, ...
0
votes
1answer
45 views
Why is the controller's parameterless constructor called and not the one with the biggest number of parameters
I have had a website asp.net MVC solution
My controller had 2 constructors: one parameterless and one with few parameter.
The code used to go through the ctor with the parameters, injection them ...
1
vote
1answer
37 views
Code first with different entities
I have three model classes and three views model is given below
public class BASLPApplicationFormModel
{
[Key]
[DatabaseGeneratedAttribute(DatabaseGeneratedOption.Identity)]
...
0
votes
2answers
17 views
How to set ActionExecutingContext status code
I am using localization actionfilterattribute and it is working perfectly fine, except I need it to redirect from / to /en with status code of 301 instead of 302. How can I fix this?
Code
public ...
2
votes
2answers
36 views
asp.net MVC 4 - output list of checkbox items, associate selections with user - allow display & editing later
ASP.NET C# MVC 4 Code First application - in Visual Studio 2012 Express, SQL Server 2012 Express.
I have a places object. I would like to output the name of all places in a list - with a check box ...
2
votes
1answer
71 views
Writing a generic with chaining instead of columns of grid
I have some columns in my script like following :
<script>
$("#grid").kendoGrid({
height: 400,
columns: [
"ProductName",
{ ...
0
votes
2answers
22 views
ASP.Net , data validation should be in the controller, not the model, contrary to this tutorial example?
I am following ASP.NET MVC Music Store Tutorial by Jon Galloway Microsoft from http://mvcmusicstore.codeplex.com
While setting up this fictitious music store , we have Album.cs as the model with ...
0
votes
2answers
25 views
Save and retrieve checkbox values asp.net mvc
I'm new to asp.net mvc and currently using MVC 2. I'm struggling with working with checkboxes for days now. I simply need to get checked checkbox values to be saved in database and on Edit view check ...
0
votes
1answer
21 views
CheckBox with Comma Separated string values
i'm new to asp.net mvc and i'm trying to handle saving and retrieving the checkBox checked values.
In my view i'm having below checkboxes
<input type="checkbox" id="cabling in coduit" ...
1
vote
1answer
53 views
Ajax.BeginForm with ASP.NET MVC 4 not calling controller action
I'm trying to use Ajax.BeginForm but without any success. I cannot get my form to work properly. My Controller Action "UpdateTest" is never called I don't know why. I followed many tutorial but still ...
0
votes
2answers
34 views
Get Checkbox values to controller
In the below view i'm trying to get the checked checkbox values to the controller for saving in the database.
<div class="editor-label">
<%: Html.LabelFor(model => ...
0
votes
2answers
28 views
Asp.net Webapi Check originator's domain
I'm developing a webapi and I'm currently performing basic authentication, but I also want to check that the api is being called from an specific domain, how can I check if the call to the api was ...
0
votes
2answers
36 views
Error when returning entity as JSON
I am trying to return an entity as JSON and I keep on getting this error:
The ObjectContext instance has been disposed and can no longer be used for operations that require a connection.
Here is my ...
0
votes
4answers
52 views
Event Asp Mvc Redirect
I am beginner in asp.net mvc. I have in the view Home.cshtml
<button name ="del" style="width:150px; ...
1
vote
1answer
24 views
Get extra input which name is not in the model class
I have the following model.
public class M
{
public int A { get; set; }
public int B { get; set; }
}
And I have the following Razor view.
@model MyApp.Models.M
@using ...
0
votes
2answers
43 views
Display checkbox list in asp.net mvc
I'm trying to display a checkbox list and save the checked values to the database in MVC 2 but so far i didn't able to display the checkbox list on the view. below is the code i'm having.
ViewModel:
...
0
votes
2answers
29 views
Set Selected Item in SelectList Collection
I have a class with the following property. It constructs a SelectList object from an existing list, and then sets the selected item.
public SelectList ProviderTypeList
{
get
{
...
-4
votes
0answers
21 views
ASP.NET Static repository two users issue [closed]
Can someone more explain this static repository problem via example?
"You often want to have 1 repository instance per-request to make it easier to ensure that uncommited changes from one user don't ...
0
votes
0answers
20 views
Expression pointing to DateTime property is transformed into Convert(x.Timestamp)
I have the following code in my ASP.NET MVC application
public static IHtmlString NameFor<T>(this HtmlHelper html, Expression<Func<T, object>> expression)
{
return ...
0
votes
2answers
23 views
HTTP traffic between asp.net mvc applications not visible to Fiddler
I have an ASP.NET MVC 4 application that needs to query another application to process requests. The MVC application makes it's request via REST. I can see the incoming HTTP request from the ...
1
vote
2answers
37 views
ASP MVC Routing - How to change the name of the default id parameter, while keeping the default route intact
In my ASP MVC web application, my controllers often have action with a "name" parameter, like this:
Function Consult(name As String) As ActionResult
.....
Return View()
End Function
I ...
0
votes
1answer
32 views
When model is not valid, return to partial view inside a view, with error message
In my asp.net MVC 4 project, I like to safe something from a partial view, which is when a user clicks for "more details".
Saving the data is no problem, closing the partial view is no problem, open ...
0
votes
1answer
23 views
Asp.net MVC Unauthorized status code and RedirectResult
I have an authorization filter which checks if users session is valid.
public class ValidateSessionTokenFilter : IAuthorizationFilter
{
public void OnAuthorization(AuthorizationContext ...
0
votes
2answers
19 views
binding Select list in PartialView
I need to generate a dynamic dropdown list in a partial view using ASP.NET MVC 2.
controller:
[HttpGet]
public ActionResult GetDestinationList()
{
JqGridClientRepository ...
0
votes
1answer
32 views
ASP.NET MVC 4 IncludeDirectory from a another referenced project
I'm facing out a strange problem while using ASP.NET MVC 4.
I have 2 "Web Site" projects:
The first named "MyWebSite"
The second named "MyWebSite.Support"
I need to include the scripts under ...
2
votes
1answer
32 views
Mono 3.0/Debian/asp.net - Method not found: 'System.Configuration.IConfigurationSectionHandler.Create
Debian Sid, Mono 3.0. I'm trying to run mvc application (it worked before upgrading mono to 3.0). This is exception thrown:
Exception caught during reading the configuration file:
...
1
vote
2answers
52 views
JQGrid Load Dropdown list data
In my JQGrid i need to load data dynamically to a dropdown list in "Company" column.
View:
<title>jqGrid for ASP.NET MVC - Demo</title>
<!-- The jQuery UI theme that will be used ...
0
votes
1answer
51 views
Control web session using c#
I have a web portal that I'm trying to pass information to another website. When the user clicks on a link I'd like to load the new web page and stuff the two form fields with information then SUBMIT ...
0
votes
2answers
36 views
How can I have a routing like this controller/action/id/string in ASP.NET MVC
I have a actionresult that look this:
public ActionResult Comment(int id)
{
var news = re.GetNewsByID(id);
NewsViewModel model = new NewsViewModel();
model.Description = ...
0
votes
0answers
27 views
ASP.NET - MvcMailer - Email Certificate
I am using ASP.NET MVC 4 with MVCMailer, I tried to send e-mails with a email certificate from COMODO to keep server messages secure:
...
0
votes
1answer
38 views
I'm getting runtime error for asp.net application, is it timeout issue?
I'm getting this runtime error sometime when I try to use asp.net application.
I'm getting this error when my browser windows is open for long time and I does not work on this.. might be server time
...
0
votes
1answer
35 views
trying to access data from Model in view page. .Net Mvc4
I have this class in my model
namespace Foreclosure.Models
{
public class foreclosureList
{
public string Area { get; set; }
public int NumberOfListings { get; set; }
}
public class ...
0
votes
2answers
51 views
Add Video in ASP.NET MVC
I am working in ASP.NET MVC. I want to add videos in my view. I have read article on Working With Videos in ASP.NET
But i want a generic way to play all type of videos in my web page. This article, ...
1
vote
1answer
53 views
Signalr - Associating usernames with connectionIds
Here is my hub:
[HubName("marketWatch")]
public class MarketWatchHub : Hub
{
public override Task OnConnected()
{
SocketCommunicator.Instance.UserConnected(Context.ConnectionId, ...
0
votes
1answer
51 views
Using a partial view on two views
I have a Partialview which goes on two differnet views. The two different views use differnet viewmodels. On one of the view the code is:
view1:
@model StudentsViewModel
......
.....
...
0
votes
1answer
20 views
Elmah in asp.net mvc release-mode only
I've installed Elmah (the standard package with default settings) via NuGet manager console.
For a test and better understanding I tried to reconfigurate it so it runs in "debug mode" only (after a ...
-1
votes
5answers
47 views
Replace substring not working
I am working in asp.net mvc. want to replace \ character to / character. But it is not working.
Let
string path="D:\Qamar\Cartoons\Image.jpg";
path=path.Replace("\","/");
I get error in second ...
0
votes
1answer
48 views
How to handle a POST request to a URL that contains route parameters?
I'm working on an ASP.NET MVC4 web app, and I have a controller method for handling a GET request with an id in the URL, like so ...
[PortalAuthorization]
public ActionResult View(int id)
{
// ...
-3
votes
0answers
98 views
Realistically, what would be the learning curve for .NET if I already master web architectures concepts and OOP (obviously)? [closed]
I have a long term opportunity for a sexy startup web project.
The thing is, it is implemented with ASP.NET, from what I simply have no knowledge of at all.
I'm a web architect, so I master web ...
0
votes
1answer
16 views
MVC app doesn't send email when deployed on a remote server
When an exception occurs in my MVC app, my code sends an email.
The thing works like a charm when I deploy locally. On the remote server, though, it doesn't send any email.
Below are some details ...
0
votes
1answer
22 views
MVC app not writing log files when deployed on IIS 7.5
When an exception occurs in my MVC app, the code creates a folder named Logs (if one doesn't exist already) under the ~ (app root) folder and under this folder, it creates a file (if one doesn't exist ...
1
vote
1answer
27 views
Ajax form reloading/returning new page instead of updating
I'm trying my hand and Asp.net MVC 4 and having an issue with an Ajax form returning a whole new page instead of just updating a div.
Here's the razor html code:
<div class="All">
<div ...
0
votes
2answers
47 views
MVC serverside validation of single posted object
I'm currently using a single action to handle 2 views which use a separate ViewModel like so:
[HttpPost]
public ActionResult(PrivateCustomer p, CorporateCustomer c)
{
if(Modelstate.IsValid) { ... }
...
1
vote
1answer
66 views
MVC vs WebForms in my production environment
Over the past couple weeks I've been examining MVC 4.0 and am trying to see whether or not to make the switch from web forms to MVC.
My current production environment is:
1) One master database, ...
0
votes
1answer
63 views
Override JqGrid Edit/Delete button CSS class
In my JQGrid i needed to add Edit and delete buttons so that when the user click on those buttons user will be redirected to another page for delete and edit the specific record. Currently it's ...
0
votes
1answer
71 views
ASP.NET MVC4 Text Input Modal Dialog
I am building an extensive web application that has dozens of places that requires the end user to add a comment and looking for the best way to abstract a partial view that renders a modal dialog for ...
1
vote
1answer
47 views
ChangePasswordQuestionAndAnswer Specified method is not supported
I'm trying to make a website with membership. All works find execpt when a member tries to change his password question and answer. I found out that the problem is exactly on this line :
bool ...
1
vote
1answer
90 views
How To Debug Web API Project From MVC Project In Same Solution
In VS 2012, I am attempting to create an MVC 4 web application with jQuery calls to a Web API project. (Other devs will be consuming the API with our current, native app, and probably adding to the ...


