1
vote
1answer
31 views

HttpContext.Current.Session[“accesstoken”].ToString() is null when value should be set

I'm setting my accesstoken retreived from facebook in Session["accesstoken"]. When I try to retreive it I get hit by a nullreferenceexception. Why? It did work before I started working on the ...
0
votes
3answers
53 views

Get values of parameters in stack trace

I am having trouble reproducing a few errors we are seeing in our error log. It could be made a lot easier if I knew which record ID a specific method was using when it threw an exception. All of ...
1
vote
0answers
17 views

Unable to log out using Google Chrome Frame and Windows Authentication

I have an MVC 4 application that uses Windows Authentication. My current challenge is I need to provide a logout button for users. I can acheive this in straight Chrome, in straight IE, but when I ...
2
votes
3answers
77 views

How can I use a reserved keyword as an identifier in my JSON model class?

I have never used Web API before, but I need a web service that will accept/return JSON objects and using this seemed like a reasonable thing. It looked pretty simple (if not a bit of overkill for my ...
0
votes
2answers
45 views

How to show a sidebar in all pages in mvc4 except 2

We currently have a site which has a section LatestNews, required:false defined in the layout and all views except two have the section which have the same call RenderPartial("ShowLatestNews") Is ...
0
votes
1answer
30 views

Integrate CMS with an existing ASP.NET MVC web project [closed]

We have an existing asp.net mvc solution (for eCommerce). We want to integrate CMS into this solution for content edit and news posting. Also we want to have multi language support for this site. Is ...
0
votes
2answers
41 views

How can I reference a *.min.css file in an MVC4 StyleBundle? [duplicate]

I am using Kendo UI in an MVC4 application. I've decided I want to move my CSS and JS references to bundles. I created a bundle like so: bundles.Add(new StyleBundle("~/bundles/baseCSS").Include( ...
-5
votes
2answers
75 views

Issue writing XML using TextWriter

I have tried writing XML using a Textwriter, but I've discovered that I can't write characters < > ' " & to that file. The class I wrote is as follows: public void Write_File(rss r, string ...
0
votes
2answers
22 views

Searching/filtering design

I have an asp.net mvc4 application to (for purposes of this question) manage work requests. The main area of this application is just a list of all the work requests in the system, simple enough. The ...
0
votes
0answers
43 views

Entities framework validation

I am developring .net mvc web api application using entities framework and I have business rules to I want to enforce for validation. I saw that I can implement IValidatableObject but is not good ...
1
vote
1answer
25 views

send DateTime through a Ajax.BeginForm #c

I'm trying to use Ajax.BeginForm. I want to send a DateTime through a html form. The problem is in the controller the Datetime is not initialised. I get the default DateTime. Any idea ? Thanks for ...
2
votes
2answers
46 views

Casting error in MVC

I am developing a MVC app. with razor syntax. I am trying to delete one value from another. @{ double DeductedAmount1 = @Model.SanctionedAmount - @Model.DeductionAmount; } This ...
1
vote
1answer
91 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 ...
1
vote
3answers
53 views

Getting error “A network-related or instance-specific error occurred while establishing a connection to SQL Server…”

Normally, I'd be able to figure this out. But, what I have going on is I have an MVC4 app that, in its current state, will NOT connect to any kind of data source. I believe that MVC, out of the box, ...
1
vote
3answers
97 views

Getting/setting the value of an integer inside a Razor view

I have a a list of elements and I would like to edit it. I created this snippet: @{ ViewBag.Title = "Liste des comptes administrateurs"; Layout = "~/Views/Shared/_Layout.cshtml"; int i ...
1
vote
0answers
38 views

Model Binding a WebSocket Message in .NET

I've implemented a class which inherits from IHttpHandler and essentially calls the following upon a request. public void ProcessRequest(HttpContext context) { if (context.IsWebSocketRequest) ...
0
votes
1answer
70 views

Why do our requests take a long time to return?

We are using ASP.NET 3 and .NET 4 - and a few different IISes (7, 8 and Express versions). All requests to the server take a long time to return, in the order of around 10 seconds, no matter what's ...
1
vote
1answer
22 views

IIS 7.5 - Files with no extensions causing Error 404.17

I am currently developping an ASP.NET MVC4 Website and I am trying to include javascript timezone support for JQuery Flot with date.js. The timezones informations of date.js are stored into text ...
0
votes
1answer
20 views

Validation prints whole regex - change this?

I have some validation in a view model: [Required( AllowEmptyStrings = false, ErrorMessageResourceType = typeof(Resources.ValidationMessages), ErrorMessageResourceName = ...
0
votes
1answer
48 views

Synchronous controller with Task.Factory.StartNew versus Asynchronous controller in MVC 4 versus Service Broker Activation

I have a project running in MVC 4 on a .Net 4.0 VS2010 environment. I need to have a long running sql task handled without making the user wait on the front end for that long. The MVC 4 web ...
0
votes
1answer
57 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
3answers
45 views

Error opening project file in VS2012

The following error is being returned when i try to open a colleagues MVC application in VS2012. when i click on "OK" - i am not able to open any of the files within the environment. I am able to ...
-3
votes
0answers
104 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
0answers
49 views

long running sql procedure hangs website

I have an MVC 4 web application that calls the business layer which calls a data layer method ExecuteSP asynchronously. The data layer method ExecuteSP calls a long running stored procedure like this: ...
0
votes
3answers
69 views

MVC3 deploy to a directory, url issue

I have a mvc3 web application which will be delopyed to an directory of a website. the address of the application seems like http://wwww.xx.com/aopo/. aopo is the name of the directory. After the ...
1
vote
3answers
66 views

Creating Re-usable Classes That Use Domain Entities

As a developer, I'm trying to make my classes more modular and re-usable. One of the areas where I've run into problems is when I design a class to work with entity framework entities. For example, ...
1
vote
1answer
21 views

Run specific application from a Web Application

I'm sure you all have seen those links are able to run for example Yahoo Messenger application on client side if it is installed on client machine. I want to know bit more about how should I register ...
-2
votes
0answers
41 views

Login to ASP .NET MVC website under HTTPS using Windows Service

I have some administrative methods under ASP .NET MVC website that is under https. So it looks like https://mysite.com/cms and there are some actions like CheckUsers My question is Can we ...
0
votes
3answers
124 views

.Net MVC bundling/minificiation - CDN friendly file naming

I'm working with .Net MVC bundling and minification. It does the job just fine, except you end up with a url like the following: /bundles/AllMyScripts?v=r0sLDicvP58AIXN_mc3QdyVvVj5euZNzdsa2N1PKvb81 ...
0
votes
1answer
127 views

ASP.NET Web API Exception filter - A way to get request url from HttpRequestBase?

I've implemented a custom exception filter to my Web API. It is working as intended, except for one small detail... In the following code sample, SaveToErrorLog saves exception details and tries to ...
1
vote
1answer
28 views

Setting “Show editor for creation date time” programmatically

I'm trying to alter the common settings for a content type to show editor for creation date time. I know this can be done via admin, but I would also like to do this through code, for deployment in ...
0
votes
3answers
68 views

Unable to pass a URL in GET request to a RESTful web service in C#

I am stuck at an unexpected issue in my project. The issue is that there is a URL produced on the fly in my code that I have to submit it to a RESTful web service via a GET request. For e.g. the URL ...
0
votes
1answer
33 views

.net Chart x axis value is not displayed under the column

For the code below foreach (LeaveType lvType in statsForBP.LeavesPerType.Keys) { var series = new Series(); ...
3
votes
1answer
63 views

ASP.Net MVC 3 - Alter URL mid POST

Let's say I have an action like this: [HttpPost] public ActionResult(MyObject obj) { //Do a SQL insert that gets an Id for obj //Do some long-running operation in the background - don't wait for ...
2
votes
1answer
37 views

How to add a descriptive text to Html.ActionLink() url's

Given the typical Controller/Action/Id routing in mvc, looking to add a descriptive text so the url's are of the type mySite.com/home/page/myarg/the-title-of-the-page-etc. this is similar to SO ...
5
votes
2answers
108 views

How to return IQueryable<T> for further querying

I'm trying the PagedList.Mvc library from here https://github.com/TroyGoode/PagedList which has this usage sample var products = MyProductDataSource.FindAllProducts(); //returns ...
0
votes
0answers
47 views

Why does RedirectToAction redirects to <param>.com

We have a mvc4 site where the HomeController.Index() has the following code RedirectionToAction("Page", new { id = "Home" } ); where action Page is defined as public ActionResult Page(string id) ...
1
vote
0answers
16 views

Apache2 Mod_mono Ubuntu

Mod_mono is not serving up pages, if I go to the url it just downloads the page rather than serve it. Here is my virtual host file. Everything else is default setup all I have done is enable mod_mono ...
0
votes
3answers
41 views

Converting any date format to a UK format

I have a form on which the user enters a date value using a KendoUI widget. This widget sets the date as per the local pc's culture settings. The problem is because in the dev environment the local pc ...
0
votes
2answers
57 views

How to get my MVC 3 application in french in production like in debug

When I'm debugging on my computer, all the error message I receive from MVC are in french (both client and server side). For example, for the "nom" field in the register page, if I don't give a value ...
1
vote
1answer
47 views

How to reference “Context” / Controller from Views

We're looking to build a mvc4 site with url's such as abc.com/site1/home/about abc.com/site2/home/about where each refers to a completely different website/page now the menu items - ...
0
votes
2answers
59 views

asp mvc ajax call - json parameter received as null

I call a mvc controller using ajax using : var ajaxOptions = { url: url, type: 'POST', contentType: 'application/json', data: JSON.stringify(data) }; I send the following ...
0
votes
1answer
65 views

MVC Multiple DropDownLists on one page?

I'm new to MVC and I am trying to bind multiple dropdownlists on the same page, so I can grab the selected value from each and use it to search the database. My code gives me an infinite loop. Can ...
1
vote
1answer
43 views

Change model property in post request asp.net mvc

I have one problem. This is short example. This is model. public class MyModel { string Title{get;set;} } In view I write @Html.TextBoxFor(model => model.Title) This is ...
0
votes
0answers
79 views

Efficient way to cache elements in a Collection

I am trying to figure out the best way to cache and retrieve individual elements in a collection. The code below illustrates how I am able to cache the list itself successfully. But when it comes to ...
0
votes
0answers
38 views

How to organise a team of developers in mvc project [closed]

I am a beginner developer of asp.net applications using MVC pattern, and i took the role of IT team leader in an academic project, then i want just a help, please, for how i can organize my team of ...
0
votes
1answer
59 views

Can I prevent instantiation of a certian type, except through a helper class? With Resharper or StyleCop perhapse?

After a security audit, I'm trying to enforce the creation of secure HttpCookies in our MVC app. I came up with a helper class to create them: public static class CookieHelper { /// ...
2
votes
2answers
68 views

Model Key and Foreign Key parametres are null in controller after POST action

I have the following hidden fields inside my View: @Html.HiddenFor(model => model.cat.Id) @Html.HiddenFor(model => model.cat.OwnerId) @Html.HiddenFor(model => model.cat.BirthDate ...
0
votes
1answer
60 views

Populate EditorFor for DateTime

I have the following model for a person: public class Person { [Key] [DatabaseGenerated(DatabaseGeneratedOption.Identity)] [Display(Name = "Id")] public int Id { get; set; } ...
0
votes
1answer
112 views

Confirmation Popup in Asp.Net Mvc

I have a piece of code that when the user clicks the save button I need to query the database and see if this new record will create a duplicate. If it will create a duplicate I need it to pop up a ...

1 2 3 4 5 59