ASP.Net String Assignment Failure

Aug 16, 2010

I'm having an odd problem with an ASP.Net page.I'm getting an object not set error message when assigning a string literal to a variable. [code] And here is the code that the error is pointing to. The last line in this fragment is the line 10 the error is complaining about [code] It seems it fails on accessing any reference type, even if it is declared locally in the load function. I originally found the problem when Request. IsSecureConnection was nulling out on me. I eventually discovered I could replace it with the above code and fail in the same way. The problem does not always happen. It seems to be triggered by publishing an update from Visual Studio, or when I head home for the day and the server sits idle all night. One or two app pool recycles seems to clear it up, and the page functions correctly. I've been doing desktop development for a few years, but I'm fairly new to web development.So maybe this is something obvious I've got configured wrong. I'm currently using .Net 4 on IIS 6. That code is in a foreach over an IEnumerable(of XElement). The stack trace still points to the string assignment, but all other stack traces are spot on, so I don't think it's a bad pdb.Also, when the error occurred this time, no amount of recycling the app pool or stopping and starting it would fix the error. I finally got it working again by switching the application to a different app pool.

View 2 Replies


ADVERTISEMENT

Select Case String Analysis + Threading = Failure?

May 27, 2010

I'm writing a threaded multi-client chat application in VB.NET(2008). While the thread is running and a message is received from the server(in this particular case: "ping") i wish to copy the content of the variable holding the newly received data to another variable(as that first variable is constantly changing) and then later call the Checkmsg() sub which contains a select case to analyse the string and notice a particular command(in this case, when it notices "ping" as received data, I want it to send "pong" back to the server.) and react to it. Now the problem is the code actually "jumps" to the Checkmsg() sub, and fails to compare properly the received data to my select case argument. I've tried setting messageboxes at a couple of place to see if my data was somehow changed but even before the line that compares the two strings the message box prints "ping" and the select case is set to react to "ping" but it wont "move". Now I don't really understand, i've done much vb programming but i'm learning threads.

[Code]...

View 1 Replies

Display A Login Failure Messagebox For App.Config Connection String?

Jan 11, 2012

I use the following connection string and am able to log into SQL 2008 R2 Server.

My.Settings.Item("CustomerConnectionString") = "Data Source=FAROOK-PCSQLEXPRESS;Initial
Catalog= '" & Me.ComboBox1.Text & "'; uid = '" & Me.Login1.Text & "'; pwd = '" &
Me.Password1.Text & "'"

How do I display a messagebox on login failure.

View 1 Replies

.net - VB 2008 Opacity Failure?

Oct 22, 2009

I have a 2 files here. One is my main form, and the other is a dialog I made. Now I'm trying to get enter code here the dialog to gradually obtain its transparency from a timer which I have on the dialong form:

If Me.Opacity = "100" Then
Timer1.Stop()
Timer1.Enabled = False
Else
Me.Opacity = Me.Opacity + 1

[Code]...

View 1 Replies

Application Restarts Itself On Failure

Sep 19, 2010

I have an app and it fails randomly sometimes because my internet is not so fast (my app uses the webbrowser). How can I make my app restart itself it it fails? Or make my app click button1 on my form if it fails.

View 1 Replies

SQL Transaction Rollback Failure

Nov 11, 2011

I have 2 tables which I want to insert data into, table "CAM" and table "COut", after inserting data in "CAM" it shall return a retAutoID which will be hand to "COut" as one of the parameter required for it's insertion. I implemented a rollback in my Business Logic such that if "Cout" hits an exception error while inserting, the previous insertion for "CAM" will rollback even if successful.With the code below, I am getting this error after trying to do perform insertion:"ExecuteNonQuery requires the command to have a transaction when the connection assigned to the command is in a pending local transaction. The Transaction property of the command has not been initialized." [code]

View 2 Replies

Webrequest And Response Failure

Jul 29, 2011

I am trying to make a currency converter from a webservicex service - although it does take some time to load

Are there any other services i can use: if not what is the problem here...

The code i use goes to the right URL and displays something like this.[code]...

View 4 Replies

VB 2010 With The Assignment?

Sep 24, 2011

I have a school assignment and I just started to learn VB. Until now I/ve done pretty good however I encountered a problem which I can't solve in this assignment. So, I would ask if someone could tell me what I'm doing wrong?

This is the assignment:The application calculates the new hourly pay for each of three job codes, given the current hourly pay for each job code and the raise percentage (entered as a decimal number).

a.) before the form appears, use the InputBox function to prompt the personnel clerk to enter the raise percentage. You will use the raise percentage to calculate the new hourly pay for each job code.

[Code]...

View 4 Replies

Why Does The Assignment Fail

Jun 5, 2012

Concerning this code... Dim i1 As Integer = Nothing

[Code]...

View 12 Replies

.net - Locking - Extent And Modes Of Failure

Jan 9, 2012

I've stress tested the code below and it seems to work fine - what are the dangers of not locking in the simple case where there is a single thread writing and a separate thread reading a simple variable? Have a class that has a public property...

[Code]...

View 3 Replies

Auto-Recover When Power Failure

May 10, 2009

I have a project with sql database and customer require to create this function .I mean when user use my program , they can delete, edit... but not still save yet. Suddenly power failure , and i want to recovery database when user turn on program again.

View 4 Replies

Changing MDF Prior To Attaching Causes Failure

May 17, 2010

I am currently using the follwoing in my install routine, the idea is to check if the db exists. if the db does exist then leave the mdf name as is and attach it as a temp db then i can run a compare between the 2 db. however if the db does not exist i want to rename the mdf and attach it. however after renaming the mdf i cant attach the file.[code]

View 1 Replies

Detect Network Failure In Program?

Sep 29, 2009

How to handle the Network failure error message,and how to simulate it?

View 3 Replies

Embedded Email Image Failure?

Jun 28, 2011

I have an email function that needs to embed images into the email. I get the mailinto my pickup but the mail still asks me to "Show Images/Download Images". Some howthe images are not being properly embedded.I'm not sure what needs to be changed the examples I find on a lot of sites is very basic and vague.Additional info for clarity: This function will either download the images via url or embed them. This is determinedvia an external xml parameter. The physical path for the images, which replaces the URLs, is also in the xml.

[Code]...

View 1 Replies

Failure Sending Email With MailMessage

Aug 25, 2010

I am trying to send email messages from a Windows based Visual Basic application. I am using Visual Studio 2008 and .NET 3.5. The IP address in the config file is correct. But this gives an error message: Failure sending mail.

Code:

Dim Mail As MailMessage
Dim MailClient As SmtpClient
MailBody = "Test email"

[Code]......

View 6 Replies

Failure To Retrieve A Decimal Number?

Oct 15, 2009

I have two forms. the first form saves a decimal number and could also retrieve it. the second form just retrieves the number from the database. on the first form, i successfully retrieved the number with the decimals included. but on the second form, the number retrieved is displayed as a rounded up whole number. i tried to copy the codes of the first form but it still displays the rounded up number.

View 11 Replies

Generic Failure (WMI) While Installing A New Printer?

May 10, 2010

I'm getting a generic failure on line 24 (objPrinter.Put_).

The port creates properly and I have the driver on the target computer.

I have admin rights on the target computer.

Set WSHNetwork = WScript.CreateObject("WScript.Network")
set shell = WScript.CreateObject( "WScript.Shell" )
Set objWMIService = GetObject("winmgmts:\<<SERVERNAME>>

[Code].....

View 1 Replies

Publish Failure - Can't Find SETUP.BIN

Jan 8, 2010

I can't get VB.Net to publish my current project, it can't find SETUP.BIN.It looks for SETUP.BIN in the directory where I have my application, not Program Files Windows SDK .. etc.If I move the ENGINE directory of the SDK path to my directory, it finds SETUP.BIN but not SIGNTOOL.EXE I've got VS 2008 on XP Pro SP2 using .Net 2.0 and Oracle - It all works fine with a BUILD out of VS 2008.

View 1 Replies

SMTPClient - Failure Sending Mail

Jul 16, 2011

Inner exception is "Unable to connect to remote server". I don't understand what I did wrong[code]....

View 5 Replies

VS 2005 Batch Update Failure

Mar 18, 2010

with vb.net 05 + access 03 how can i use parametrized append query via vb.net 2005..i don't know hence i used this code but this code is working fine but only the first row is appending equal to the number of records (i loop variable)[code]

View 4 Replies

VS 2008 Download A File From Ftp Failure?

Nov 28, 2009

I can download the file in internet explorer, firefox and etc. browser, but when I try the following code to get my file from ftp, it cannot get the file..

Dim clsRequest As FtpWebRequest = CType(FtpWebRequest.Create("ftp://xxx.com/ftp/demo/xxx.exe"), FtpWebRequest)
clsRequest.Method = WebRequestMethods.Ftp.DownloadFile

[Code].....

View 3 Replies

VS 2008 Mail Send Failure

Sep 8, 2010

I am about to put my fist through my monitor!!! I have been working on this for the better part of 2 days. Here's the issue: I'm in an Enterprise environment and am writing an app that will shoot off small emails. I got the settings I needed yesterday and got everything to work 5 times in a row! Then, I went to another task for a little while and came back to the email portion and ran another test and it never worked again! I've written and re-written my code 100 times. I can't get it to work. Here's one version of my

[Code]...

View 5 Replies

Why Does Integer.TryParse Set Result To Zero On Failure

Jul 3, 2009

My understanding of the Integer.TryParse() function was that it tried to parse an integer from the passed in string and if the parse failed the result integer would remain as it did before.

I have an integer with a default value of -1 which I would like to remain at -1 if the parse fails. However the Integer.TryParse() function on failing to parse is changing this default value to zero.

Dim defaultValue As Integer = -1
Dim parseSuccess As Boolean = Integer.TryParse("", defaultValue)
Debug.Print("defaultValue {0}", defaultValue)
Debug.Print("parseSuccess {0}", parseSuccess)

[Code]....

View 2 Replies

Windows Service Installation Failure

Mar 24, 2011

I am failing to Install a windows service and I cannot see where i went wrong.

Here is the error message I get when installing the Service from the SDK command prompt window.

C:\Program Files\Microsoft Visual Studio 8\SDK\v2.0>InstallUtil "d:\My Documents\MyNe
wService\WindowsService1\bin\Debug\MyServiceApp.exe"

[Code].....

View 8 Replies

.net - Perform An Assignment In An IF Conditional In .NET?

Mar 19, 2012

Is there a way to set a variable in VB.NET in an IF statement. I would like to do the following:

[Code]...

Is there some way I can get the last "ElseIf" to work? I know I can re-write it to get it to work but is there some syntax that will make it work the way it is?

View 3 Replies

Assignment Operators Overloadable In .NET?

Apr 23, 2012

Why aren't the assignment operators (+=, -=, *=, /=) overloadable in VB.NET?

View 1 Replies

Combobox Assignment Of Variable?

Apr 4, 2011

If I put:

variableName = namecombobox.selectedItem

or

Dim variablename as type = namecombobox.SelectedIndex

Visual studio gives me the error: "Option Strict disallows conversions from object to string.

I can fix this by putting:

variableName = convert.ToString(namecombobox.SelectedItem)

Are all values contained in a combobox automatically treated as a non-string even when they are string values (in this case "Male" & "Female") and what is the correct way of assigning the value selected in a combobox to a variable?

View 1 Replies

Constant Cannot Be Target Of An Assignment

Jun 12, 2011

i am making a program on visual basic 2010 and part of my objective is to calculate the tax, i am trying to calculate the TAX so this is part of my code and this is the only part which gives me errors:[code]

1. Constant cannot be target of an assignment

2. value of type 'string' cannot be converted to 'System.windows.forms.Lebel'.

View 2 Replies

Create A Code For This Particular Assignment?

Jun 21, 2010

I have an assign ment that says: create an application to let the user enter his or her name (first and last name), then displays the Initial in Upper Case. FOr example: you enter "John Wow", then the Label will display "JW". I know that I'm supposed to use the Substring method. But to use the Substring, I have to have the exact location of the Leter that is going to be displayed in the Label.The problem is: the name that the user enters always vary. So in strnewstring.Substring(... , ...) ---> the number in the parenthesis would vary, too. Thus, I cannot put a number in there.So how can i create a code for this particular assignment.

View 4 Replies

Design A Sudoku( 4*4 ) For VB Assignment?

Sep 26, 2011

i need to design a sudoku( 4*4 ) for my VB assignment..and i am having problem with generating random numbers for the four text boxes i have used..

View 4 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved