0
votes
0answers
105 views

Object reference not set to an instance of an object — affects IE 10 only [duplicate]

This seems to only happen with IE or Windows 8. ERROR: __VIEWSTATE=... URL: /PreFilingBriefing.aspx QUERYSTRING: TARGETSITE: Void Page_Load(System.Object, System.EventArgs) STACKTRACE: at ...
0
votes
2answers
18 views

Error when trying count page views ASP.NET C#

I have the following C# code: Application["CountTrackViews"] = int.Parse(Application["CountTrackViews"].ToString()) + 1; The problem here is that there is no start value for this ...
-1
votes
0answers
10 views

SCOM 2012 ASP.Net Application Monitoring

I have a ASP.Net MVC Application which i would like to monitor using SCOM 2012. We use NLog for error & application tracing (i.e, critical steps like user creation etc), I want both the kind of ...
1
vote
3answers
42 views

How to remove a char in string using vb.net?

string Example 1 : abc / string Example 2 : abc / cdf / / string Example 3 : abc / / / / string Example 4 : / / / / / string Example 5 : abc / / xyz / / / I need to remove the slashes in string ...
1
vote
1answer
22 views

HttpWebRequest Issue: System lacked sufficient buffer space or because a queue was full

I am using a service to pull in a list of hotels in the form of an XML document. All of this works fine on our dev server when testing it, however shorty after deploying it live all the pages using ...
2
votes
2answers
44 views

How to send null value to a stored procedure?

My stored procedure looks like this: CREATE PROCEDURE [dbo].[insertCompList_Employee] @Course_ID int, @Employee_ID int, @Project_ID int = NULL, @LastUpdateDate datetime = NULL, ...
0
votes
1answer
42 views

Calculate age from dateofbirth column in the datatable using LINQ query?

I have a datatable with Name and DateOfBirth column, i want to query the datatable to calculate Age using LINQ query.
0
votes
0answers
12 views

uploading simle asp.net website to appharbor from codeplex

I have create a new test asp.net web application project on codeplex to upload files onto my appharbor domain. but build is getting failed I am currently focusing on to fix first issue The type ...
0
votes
2answers
24 views

Fixing the action back to an account page in asp.net mvc application

I have an asp.net mvc4 application, in which i have to logout from an account : if (_fonction == "User") { if (_is_admin == true) return RedirectToAction("Index"); ...
0
votes
3answers
30 views

Action not getting invoked mvc

I am developing an application in asp.net using mvc4. I am very new to asp.net. Following is my global.asax code public static void RegisterRoutes(RouteCollection routes) { ...
-2
votes
0answers
31 views

Prefer POST cookies instead of Browser Cookies

I wonder if we can force to prefer POST cookies instead of Browser cookies. Case Scenario: I have a specific situation where, I Open a website called as http://www.abcd.com which sets a cookie after ...
1
vote
3answers
27 views

Using MasterPage disadvantages

We can use MasterPage for integrating the layout of header and footer for example. But we can use it for Server Sides operations like checking Session for user login. Is this method risky?What is ...
0
votes
2answers
74 views

Route a button to a static IP address in C#

I'm still a baby in the world of .NET and I've been given a task that I just can't seem to resolve. I need an application to connect to multiple databases. The databases have static IP addresses. ...
1
vote
0answers
34 views

Parser Error Message: Could not load type error comming [closed]

I have uploded asp.net website. Getting error: Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error ...
0
votes
2answers
35 views

Static List - WebMethod with EnableSession

I am using JTable ( http://www.jtable.org/ ) in an asp.net application with forms authentication. My web application will create a session for each user who logs in successfully. Now, the Jtable ...
0
votes
5answers
111 views

What would be the “cheapest” way to check for updates periodically?

Basically I'm writing an ASP.NET MVC application that though a javascript sends a GET request every 30 seconds, checking if a certain row in a table in the database has changed. I've been looking at ...
0
votes
0answers
45 views

dropdownlist values from jquery are not recognized in c# code behind

I am trying to get a selected item from asp.net dropdownlist control which is populated from jquery ajax call. I am able to loop through the items on the screen, see the options attached in the source ...
0
votes
2answers
46 views

Passing parameters with the method post in razor

I have an asp .net mvc4 application in which i'd like to pass an object user as a parameter from action to other: User _u = new User(); if (_fonction == "User") { return ...
0
votes
1answer
21 views

Is there any library for OAuth registration on .NET?

everybody:) I need to implement OAuth registration on my project, but I don't have a time to learn whole protocol, and write low-level code. Is there any library for .NET that can make it easier? I ...
0
votes
1answer
31 views

How i change order of my gridview columns dynamically?

I have an application in asp.net web .net. this application have a collection of dogs and i can display this dog with specific criteria. For do this, i have one gridview bind to my dogs collection ...
0
votes
2answers
63 views

How to get the full Path of the file upload control in a string variable in asp .net?

I would like to get the full path of the file upload control in the string variable. The file may be stored in any location other than the root of the project. Anybody please help out. The situation ...
2
votes
2answers
18 views

using login information in DNN portal A to login portal b?

just I want to ask how set DotNetNuke portals to use login information of Site A to login to site B?
3
votes
1answer
34 views

Getting a view by changing url in razor

I have a problem in the file RouteConfig.cs in my asp.net mvc4 application : public static void RegisterRoutes(RouteCollection routes) { ...
1
vote
2answers
28 views

Convert ASP.NET SendGrid call into JavaScript?

Consider the following ASP.NET example for sending an email using SendGrid. Is there a way to write the equivalent code in JavaScript? @{ string message = ""; if (IsPost) { ...
1
vote
0answers
18 views

“Unable to step. Process is not synchronized” error in VS2010 after upgrading .NET Framework

I had Visual Studio 2010 installed on my Windows 7 desktop, that I was using primarily to debug ASP.NET solutions. Everything was working great, until one of the Windows updates installed a new ...
-1
votes
0answers
19 views

Dynamic web application pages built from admin

I currently develop a .Net application for my employer. They want a word document template used for project design converted to a project page on the website. It has content such as text areas, ...
-2
votes
2answers
26 views

How to bind a value to dropdown list box based on a condition from another dropdown list box? [closed]

if i select a particular country in the first drop down list box then the respective state of that country should be display on the second drop down list box. How can i achieve this?
0
votes
1answer
48 views

Why Am I getting: “A potentially dangerous Request.Path value was detected from the client (&).”?

I don't understand why I am getting exception calling the action from my controller by typing the full url It works fine calling from form or ajax post using jquery, it is not setup to accept only ...
1
vote
1answer
55 views

When does MemoryCache get cleared in .Net web app?

I am using MemoryCache in a MVC, and Web API application, to cache objects. I am initializing the cache in my Global.asax.cs. IE: MemoryCache c = new MemoryCache(cacheNamespace); var cacheItem = ...
2
votes
1answer
66 views

Asp.NET MVC 4 WebApi Upgrade - RC to 4.0.30506.0

I'm running into an issue that many others seemed to have back when the first production release Asp.NET WebApi was introduced and people were upgrading to it from the release candidate edition... ...
0
votes
0answers
39 views

HttpWebRequest and Cache Policy

I'm trying to utilize the HttpRequestCachePolicy in a code that download requests from a 3rd party service. My code is currently like this: protected virtual XmlDocument Send(XmlDocument ...
0
votes
1answer
49 views

Data is not being updated on SQL Server from Web Page

I recently started on C#.Net. I am having some trouble with updating my sql server database. This page is just a basic "Create an account". The user submits username,password and email. The program ...
0
votes
1answer
25 views

Protecting directory in asp.net is not working

I am trying to place pages in separate directories. I have set the web.config like this <location path="AdminPanel"> <system.web> <authorization> ...
0
votes
1answer
41 views

Display .pdf in image box in asp.net

The goal is to upload a .ppt, convert it to a .pdf, and then show that to the user. Right now I can upload and convert just fine. If I uncomment those two lines in my code-behind, it shows a ...
0
votes
2answers
24 views

asp:FileUpload - Keep track of files to save later

I am working on a form on a page that uses an asp:FileUpload to allow users to upload files to a server. I'm new to ASP and am using C# for my code-behind. The plan is to have the user "attach" files ...
0
votes
1answer
23 views

Repeater ItemTemplate and DataBinding

I have some .ascx and its code behind. I am using Repeater with my ItemTemplate there. So the question is - in which moment this template is assigned to my repeater? Regards, Dmirty.
-2
votes
0answers
32 views

How the dot net application working (life cycle)? [closed]

I am new to dot net technologies.I meet this question in one interview.i know the asp .net life cycle but how to answer this question " How the dot net application working or life cycle (general life ...
0
votes
1answer
29 views

Thread is being aborted in asp.net application [closed]

I have configured my asp .net website in local IIS , if i made any changes in app_Code file then web site is compiled and some time "Thread is being aborted" error is raised . I can't find reason or ...
-8
votes
1answer
51 views

How add a page(aspx) runtime? [closed]

Good morning I am a little bit a confused. How can I Add page(aspx) on runtime? I tried to search on Google i didn't get positive response. I know this site user or Reader are very intelligent and ...
0
votes
0answers
22 views

Missing thumbnail image generating thumbnails on the fly

Why if I generate many thumbnail images with the code below, during web page render some of them are always missing? I tested IE10 and FF21 and the missing image always change. We work with ASP.NET ...
-1
votes
6answers
48 views

No required “Session Timeout”, [closed]

In my project session was only available for 30 minutes (Which is by default). BUT... I want to disable this kind of session timeout. Means I required unlimited time for session by which my website ...
0
votes
1answer
25 views

Postback of all controls does not occur when i use PostBackUrl=“javascript:void(0);”

I want to avoid postback for following control It works fine . But when i click on that control ,all postback of other controls on the page also does not occur.Before click on following all works ...
0
votes
1answer
21 views

ASp.Net Chart with string values on X and Y axis

I have using asp.net chart in my application. Here, I would like to display StackedBar chart with the value of x-axis and y-axis. Note that here, value on both axis would be string. Value may be like ...
-1
votes
2answers
61 views

Datepicker does not insert a date

I've run into a tricky problem it seems. I've got two input text fields that i've turned into datepickers. However when i pick a date the date does not transfer into the textfield. The calendar shows ...
0
votes
0answers
10 views

how to Frame a webservice xml output and how to set attribute to xml tag

I need to write a web service(asmx) and the web service has to generate a output like the below mentioned xml. Iam new to web service i don't have any idea about how to frame the xml and how to set ...
0
votes
0answers
12 views

The type specified in the TypeName property of ObjectDataSource 'objectDS' could not be found.

file structure where the method is written : Solution : DropdownObjectDataSource ProjectName : DropdownObjectDataSource Folder :Layouts: Folder :DropdownObjectDataSource these ...
0
votes
1answer
38 views

Custom Exceptions in Web API

Can someone help me in creating an exception which has the overridden message, source and stack trace values. I tried using httperror in the HttpResponseMessage, but I need to add Stacktrace and ...
1
vote
0answers
10 views

Using Profile properties in ASP pages

I want to have part of the URL address (a directory name) of my images in the aspx file in a profile Property. In this case the Property is called ThemeDir, something like this: <asp:Image ...
-4
votes
1answer
29 views

SQL Data Reader value accessing [closed]

I am working in asp.net and have following code. line 10 getting error while (dr.Read()) { for (int i = 1947; i < 2013; i++) { if (dr["Y" + i] != null) { myRow = ...
0
votes
1answer
61 views

ASP.NET exception: The value's length for key 'initial catalog' exceeds it's limit of '128'

I am self-learning ASP.NET MVC4, and setting up a simple website, I get the error as soon as I hit the register or login button on the site: The value's length for key 'initial catalog' exceeds ...

1 2 3 4 5 260