0
votes
0answers
13 views

ASP.NET MVC 3 Add Custom Header Exception

I want to add response header "Access-Token" >name "My Custom Value">value then i am getting this error; system.platformnotsupportedexception why do you think? public abstract class ...
1
vote
1answer
33 views

String was not recognized as a valid DateTime error when I get data from a textbox

// ddlDepartureTime is a dropdown list string hourtime = ddlDepartureTime.SelectedItem.ToString(); //String format exception occurs here ? // txtDepartureTime is a ...
2
votes
4answers
41 views

ApplicationException or create custom exceptions?

In my file repository, I will throw the following exceptions when the InsertFile() method is called: When the upload file size limit is exceeded When the storage capacity is exceeded At the moment ...
0
votes
1answer
28 views

SmtpFailedRecipientException not showing the complete message text

Sending mails via (new SmtpClient()).Send(msg) get me a SmtpFailedRecipientException with message "Mailbox unavailable. The server response was: 5.7.1 Unable to relay", not showing me the rest of the ...
3
votes
3answers
49 views

Exception that throws another Exception

I have a CustomException class, that is a wrapper on top of Exception class. This is the main class that i use when i handle Exceptions. public class CustomException : Exception { public string ...
-3
votes
1answer
50 views

Exception of type 'System.OutOfMemoryException' was thrown. after page load in asp.net c# [closed]

I have a web form in asp.net that every time I try to access it, it throws the following exception Exception of type 'System.OutOfMemoryException' was thrown It does enter the page load and finishes ...
0
votes
1answer
97 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 ...
3
votes
1answer
59 views

System.Web.UI.ViewStateException ,Invalid viewstate

My website is throwing the below exceptions everyday and i couldn't find the solution. i did few research in web and this is what i do so far. adding below option to aspx won't solve the problem. ...
0
votes
4answers
74 views

How to handle exceptions using LINQ's SubmitChanges method?

I am adding a new record to my department table using LINQ, this what I do: try { dpt = new departement(); dpt.departementcode = tbDepartementCode.Value; dpt.departementname = ...
0
votes
0answers
37 views

Windows Event Viewer Event ID 1309 malformed URL when encoded space character

Event Viewer shows Event ID 1309 for unhandled exceptions. If the URL has encoded space character "%20", it gets malformed, portion of URL repeats 82 times. Any clues why 82? Is this a known bug in ...
0
votes
1answer
37 views

How to get the LineNumber and Method name inside Exception

So i have a function which in turns call a method that take Exception object as the parameter. public DataSet SomeFunction() { try { } catch (Exception ex) { ...
0
votes
0answers
69 views

Ultidev web server fails to create ActiveXObject(“Outlook.Application”) object

I am hosting an intranet ASP.net site using Ultidev web server. Test Page contains JavaScript as below. Upon running this hosted page from ultidev web server, it is giving me the exception: ...
0
votes
1answer
49 views

ExecuteReader requires an open and available Connection. The connection's current state is connecting

I have an ASP.NET web page. It makes use of 4 BackgroundWorkers. Each bw retrieves some data from a database. The code for connecting to the database is: if (dbConnection.State == ...
1
vote
3answers
45 views

Throw Error as string in ASP.NET

I have a class with this method: public static DataTable getHeader(DALheader header) { string sql = string.Format("EXECUTE getHeader @headerID = {0}", header.headerID); SqlDataAdapter ...
0
votes
0answers
75 views

finding control in row command of grid view.Index was out of range.

I am trying to find a control i.e. ID of an image which I need to make visible=false if no document is there in the table. I am getting the id via command argument just fine.. but the code below is ...
0
votes
2answers
36 views

Mapping an IL dump back to the source code leveraging the CLR20R3 information

I am getting a CLR20R3 error in a running ASP.NET application. And I know in the end I need to be catching this error - clearly - but that's a maintenance task I'll get to after I get this resolved in ...
1
vote
2answers
66 views

How to catch multiple sql exception?

There are two unique fields in my database and it is possible the user will try to add a value which already exists in one (or both) of these columns via my webpage. Quite literally, there are 2 ...
-1
votes
1answer
74 views

How can i validate a textbox which is inside listview so that it may not allow null value in runtime?

I have a listview which consist of Taxinreal,Taxinpercent,Amount,Netamount,Datetakenplace textboxes. All of these fields are contained in tblexpenses table in my database. Now what i want is in ...
2
votes
6answers
77 views

Error using a dictionary in c#

I am trying to search through a dictionary to see if it has a certain value and if so then to change it. Here is my code: foreach (var d in dictionary) { if (d.Value == "red") { ...
0
votes
0answers
58 views

Connection OleDB failed

I want to connect to an .mdb database, the .mdb is password-protected. string connectionString2 = "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=\\****ad\******\*****_viewer.mdb; JET OLEDB:Database ...
0
votes
3answers
52 views

How to go from one exception handler to another?

The best way to explain my question is with the following pseudo-code: try { //Do work } catch (SqlException ex) { if (ex.Number == -2) { debugLogSQLTimeout(ex); } else ...
-1
votes
2answers
52 views

Login Failed In Domain Server Through ASPX

I have domain server and mssql database with it. When I run the aspx page through the domain server it gives me exception. I have password and username for the sql database in the domain server maybe ...
1
vote
2answers
81 views

Server Exception With ASPX

When I run aspx code through web server I get the following exception. What should I do to fix it ? Description: An error occurred during the processing of a configuration file required to ...
1
vote
1answer
45 views

Server Error When ASPX Run

I have simple aspx code. When I run the aspx page with local server(Visual Studio Development Server) all works fine. But when I run it on my domain I get the following exception. Description: An ...
13
votes
4answers
285 views

Client-Side CommunicationException while Service works properly

Currently i am facing a problem i do not understand. I have an wcf client that calls a wcf service through several threads at the same time (both on the same machine). Sometimes, i encounter the ...
0
votes
1answer
147 views

Android ksoap2 handle ASP.NET exception

I have an ASP.NET WebService which will throw exception if the input condition is wrong. If it is invoked by another C# / ASP.NET application client, they can interpret the exception correctly. But ...
0
votes
3answers
368 views

Cannot Find Label Control In Repeater Control

I want to take the Label control with ID TextLabel in the code behind, but this give me the following exception Object reference not set to an instance of an object. The exception is on this line of ...
1
vote
1answer
411 views

ASP.NET Response.Redirect() doesn't work without try/catch

I have a trouble, which I didn't get earlier with the ASP.NET. I can't redirect to the some location with the method Response.Redirect() I've read another topics and may tell you, what exactly I have ...
2
votes
0answers
451 views

Object reference not set to an instance of an object. in MVC Layout = null

I'm getting a strange error located in @{ Layout = null; } This is the error : Object reference not set to an instance of an object. Description: An unhandled exception occurred during ...
1
vote
1answer
246 views

Intermittent deserialization errors in REST WCF Service in .NET 4.5

Since updating our project to Visual Studio 2012 and a targeting the .NET framework 4.5 from 4.0, we've been intermittently experiencing serialization exception issues when attempting to return data ...
1
vote
3answers
97 views

Why is the catch block not being triggered?

I am trying to log errors to a file but I can't seem to get the catch block to run when an error occurs. Here is an example of the code: try { cmd.ExecuteNonQuery(); } catch ...
0
votes
1answer
84 views

Asp.Net Application Deployed getting Operation aborted (Exception from hresult 0x80040e14 (E_ABORT))

I have an asp.net application which i'm sending a mail, with attachment of a file which is stored in the local drive.The code written to send mail by using outlook com object to sent mail.As the code ...
0
votes
3answers
59 views

Searching Active Directory from ASP.NET

I have an asp.net website which searches Active Directory for user details using this code: public static SearchResult GetUserProfileFromAD(string username) { DirectorySearcher searcher = new ...
0
votes
0answers
230 views

The state information is invalid for this page and might be corrupted, was working now not (under Citrix)

I have a customer who has just reported an error with a ASP.Net web application. They run it via Citrix, and it has run just fine for years. After a recent update, which wouldn't have changed anything ...
0
votes
1answer
50 views

ArgumentOutOfRangeException when accessing resource collection item

Where can I create this object in the asp.net lifecycle methods without receiving an out of range exception. Right now the only place that I can actually get a resource collection containing values is ...
0
votes
0answers
34 views

KeyNotFoundException/ClientDependency.Core.CompositeFiles.CompositeDependencyHandler?

Since we add a global exception log to Global.asax, we discover so new new exception in our application. Any idea where this one does come from and how to correct it ? <?xml version="1.0" ...
-1
votes
1answer
76 views

ArgumentNull exception in asp.net web application

I have developed an asp.net application in which input will be given through an excel sheet. This application is working fine in a system with WINDOWS XP and MS office 2008. If i try to run the same ...
0
votes
2answers
111 views

DataBind on a DropDownList throws exception even though no index is selected

So i am getting this error {"'drpButton1' has a SelectedValue which is invalid because it does not exist in the list of items.\r\nParameter name: value"} From everything i can read this is because ...
0
votes
3answers
17 views

Object Reference for MapPath Field

When I try to run this give me exception on class field shown below : An object reference is required for the non-static field, method, or property 'System.Web.UI.Page.MapPath(string) Why ? ...
1
vote
3answers
538 views

Find Control Inside ListView Control

I want to find "Label" control with ID = "Label" inside the "ListView" control. I was trying to do this with the following code: ((Label)this.ChatListView.FindControl("Label")).Text = "active"; But ...
0
votes
0answers
186 views

Asp.Net - Formview - Event Firing - ItemInserted

I've a FormView with an insert mode. I'm throwing an exception in the ItemInserting Event which I excpect to catch in the ItemInserted event using the FormViewInsertedEventArgs, however, the event ...
0
votes
1answer
69 views

need help catch a formatexception error

My workaround solution seems silly but it prevents the error. Is there a better way to do this? try { myNumber = Convert.ToInt32(InputRow.Substring(288, 9)); } catch (FormatException e) { }
2
votes
2answers
80 views

Should my custom RoleProvider throw an exception in AddUsersToRoles?

I'm implementing a custom ASP.NET role provider, and I'm wondering whether its AddUsersToRoles method should throw a ProviderException if a user passed in is already in a role passed in. The default ...
0
votes
1answer
142 views

LDAP Authentication The specified domain either does not exist or could not be contacted

I got the following error {"The specified domain either does not exist or could not be contacted. "} at the line Dim adResults = adSearch.FindOne.Path Can anyone suggest why it is ? Seeing ...
0
votes
0answers
89 views

argumentnullexception was unhandled by user code

In an ASP.NET application while uploading data from an excel sheet to website im getting the error System.ArgumentNullException: Value cannot be null. Source Error: Line 161: ...
0
votes
1answer
85 views

Getting Object reference not set to an instance of an object exception, when using SQLDataAdapter with SQL Functions

I'm trying to use SQL Functions with SQLDataAdabter, but when i run my application i get this exception : Object reference not set to an instance of an object in that line : ...
0
votes
0answers
19 views

Control Method Exception

I have class "Operations", this class inherit another class "Default.aspx.cs" (the code behind Default.aspx). When I use for example "TextBox.Text"(control property) in method from class "Operations", ...
1
vote
0answers
118 views

Object reference not set to an instance of an object - not appearing in server application eventviewer

I have an ASP.NET web application that calls a webservice. This web service takes in a Dictionary object (which I've filled with session info) and translates it to XML.The application is working fine ...
0
votes
0answers
95 views

Getting Security Exception while running Asp.net application

I have taken a web application from VSS. While running this application i am getting the below error. Security ExceptionDescription: The application attempted to perform an operation not allowed by ...
0
votes
1answer
47 views

Object Reference Error -To Uncheck Optimize Code option

We were getting lots of unhandled null reference exceptions in our application as below. System.Web.HttpUnhandledException: Exception of type 'System.Web.HttpUnhandledException' was thrown. ---> ...

1 2 3 4 5 9