473,549 Members | 2,935 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

intermittant error on web server

I hope that someone can help me out there with this problem.

I get an itermittant problem with our web page that occurs about once
every 10 to 15 days where the only way to fix the problem is to bounce
the web server. The error can be seen below.

I have looked at the stack trace and determined where the error is
occuring but when I look at my code, where it says that I have an
unhandled exception, I have error handling to handle it. You can see
the code below the error message.

What could be casuing this intermittant behaviour.

Thanks

James

*************** *************** *************** *************** *************** *
*************** *******ERROR
MESSAGE******** *************** *************** ***
*************** *************** *************** *************** *************** *
Server Error in '/' Application.
--------------------------------------------------------------------------------

Object reference not set to an instance of an object.
Description: An unhandled exception occurred during the execution of
the current web request. Please review the stack trace for more
information about the error and where it originated in the code.

Exception Details: System.NullRefe renceException: Object reference not
set to an instance of an object.

Source Error:

An unhandled exception was generated during the execution of the
current web request. Information regarding the origin and location of
the exception can be identified using the exception stack trace below.

Stack Trace:

[NullReferenceEx ception: Object reference not set to an instance of an
object.]
login.AccountAc cess.Page_Load( Object sender, EventArgs e) +7514
System.Web.UI.C ontrol.OnLoad(E ventArgs e) +67
System.Web.UI.C ontrol.LoadRecu rsive() +35
System.Web.UI.P age.ProcessRequ estMain() +750
*************** *************** *************** *************** ***************
*************** CODE*********** *************** *************** ***************
*************** *************** *************** *************** ***************

Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArg s) Handles MyBase.Load
Dim PremNo, CustNo, FirstName, MiddleName, LastName As String
Dim StreetName, StreetNumber, PostDirection, PreDirection,
ZipCode, State, Unit, UnitNumber, Suffix, City As String
Dim AmountDue, DueDate, PayByCheck As String

Try
'control page caching so
'that page is not cached
Response.Buffer = True
Response.Expire s = 0
Response.Expire sAbsolute = Now.AddDays(-1)
Response.CacheC ontrol = "no-cache"

If (Not IsPostBack) Then

'************** *************** *************
'****** Fill data in dataset **************
'************** *************** *************
Try
'Get Balance Information
Me.daBalance.Se lectCommand.Par ameters("PremNo ").Value
= Session("PremNo ")
Me.daBalance.Se lectCommand.Par ameters("CustNo ").Value
= Session("CustNo ")
Me.daBalance.Fi ll(dsUserData)
Catch ex As Exception
Throw New Exception("Quer y Balance Information: "
& ex.InnerExcepti on.Message & " " & ex.Message)
End Try

Try
'Get the due date
Me.daDueDate.Se lectCommand.Par ameters("PremNo ").Value
= Session("PremNo ")
Me.daDueDate.Se lectCommand.Par ameters("CustNo ").Value
= Session("CustNo ")
Me.daDueDate.Fi ll(dsUserData)
Catch ex As Exception
Throw New Exception("Quer y Due Date: " &
ex.InnerExcepti on.Message & " " & ex.Message)
End Try

Try
'Get Account Name
Me.daName.Selec tCommand.Parame ters("CustNo"). Value
= Session("CustNo ")
Me.daName.Fill( dsUserData)
Catch ex As Exception
Throw New Exception("Quer y Account Information: "
& ex.InnerExcepti on.Message & " " & ex.Message)
End Try

Try
'Get account service address
Me.daServiceAdd ress.SelectComm and.Parameters( "PremNo").V alue
= Session("PremNo ")
Me.daServiceAdd ress.Fill(dsUse rData)
Catch ex As Exception
Throw New Exception("Quer y Account Service
Address: " & ex.InnerExcepti on.Message & " " & ex.Message)
End Try

'set labels with data
lblAcctNo.Text = Session("CustNo ") & "-" &
Session("PremNo ")
Session("AcctNo ") = lblAcctNo.Text

Try
'get data from UCBCUST table and add data to
respective labels
FirstName = IIf(Not
IsDBNull(dsUser Data.Tables("UC BCUST").Rows(0) .Item("UCBCUST_ FIRST_NAME")),
dsUserData.Tabl es("UCBCUST").R ows(0).Item("UC BCUST_FIRST_NAM E"), "")
MiddleName = IIf(Not
IsDBNull(dsUser Data.Tables("UC BCUST").Rows(0) .Item("UCBCUST_ MIDDLE_NAME")),
dsUserData.Tabl es("UCBCUST").R ows(0).Item("UC BCUST_MIDDLE_NA ME"), "")
LastName = IIf(Not
IsDBNull(dsUser Data.Tables("UC BCUST").Rows(0) .Item("UCBCUST_ LAST_NAME")),
dsUserData.Tabl es("UCBCUST").R ows(0).Item("UC BCUST_LAST_NAME "), "")
PayByCheck = IIf(Not
IsDBNull(dsUser Data.Tables("UC BCUST").Rows(0) .Item("UCBCUST_ PAY_BY_CHECK_IN D")),
dsUserData.Tabl es("UCBCUST").R ows(0).Item("UC BCUST_PAY_BY_CH ECK_IND"),
"")
lblName.Text = IIf(Len(FirstNa me) > 0, FirstName &
" ", "") & _
IIf(Len(MiddleN ame) > 0, MiddleName
& " ", "") & _
IIf(Len(LastNam e) > 0, LastName,
"")
lblAllowedToPay ByCheck.Text = IIf(Len(PayByCh eck)
0, PayByCheck, "N") Catch ex As Exception
Throw New Exception("Retr ieve Account Information:
" & ex.InnerExcepti on.Message & " " & ex.Message)
End Try

'add data to session variables
Session("Name") = lblName.Text
Session("FirstN ame") = FirstName
Session("LastNa me") = LastName
Session("PayByC heck") = lblAllowedToPay ByCheck.Text

Try
'get address info from UCBPREM table
StreetName = IIf(Not
IsDBNull(dsUser Data.Tables("UC BPREM").Rows(0) .Item("UCBPREM_ STREET_NAME")),
dsUserData.Tabl es("UCBPREM").R ows(0).Item("UC BPREM_STREET_NA ME"), "")
StreetNumber = IIf(Not
IsDBNull(dsUser Data.Tables("UC BPREM").Rows(0) .Item("UCBPREM_ STREET_NUMBER") ),
dsUserData.Tabl es("UCBPREM").R ows(0).Item("UC BPREM_STREET_NU MBER"),
"")
PostDirection = IIf(Not
IsDBNull(dsUser Data.Tables("UC BPREM").Rows(0) .Item("UCBPREM_ PDIR_CODE_POST" )),
dsUserData.Tabl es("UCBPREM").R ows(0).Item("UC BPREM_PDIR_CODE _POST"),
"")
PreDirection = IIf(Not
IsDBNull(dsUser Data.Tables("UC BPREM").Rows(0) .Item("UCBPREM_ PDIR_CODE_PRE") ),
dsUserData.Tabl es("UCBPREM").R ows(0).Item("UC BPREM_PDIR_CODE _PRE"),
"")
ZipCode = IIf(Not
IsDBNull(dsUser Data.Tables("UC BPREM").Rows(0) .Item("UCBPREM_ ZIPC_CODE")),
dsUserData.Tabl es("UCBPREM").R ows(0).Item("UC BPREM_ZIPC_CODE "), "")
State = IIf(Not
IsDBNull(dsUser Data.Tables("UC BPREM").Rows(0) .Item("UCBPREM_ STAT_CODE_ADDR" )),
dsUserData.Tabl es("UCBPREM").R ows(0).Item("UC BPREM_STAT_CODE _ADDR"),
"")
Unit = IIf(Not
IsDBNull(dsUser Data.Tables("UC BPREM").Rows(0) .Item("UCBPREM_ UTYP_CODE")),
dsUserData.Tabl es("UCBPREM").R ows(0).Item("UC BPREM_UTYP_CODE "), "")
UnitNumber = IIf(Not
IsDBNull(dsUser Data.Tables("UC BPREM").Rows(0) .Item("UCBPREM_ UNIT")),
dsUserData.Tabl es("UCBPREM").R ows(0).Item("UC BPREM_UNIT"), "")
Suffix = IIf(Not
IsDBNull(dsUser Data.Tables("UC BPREM").Rows(0) .Item("UCBPREM_ SSFX_CODE")),
dsUserData.Tabl es("UCBPREM").R ows(0).Item("UC BPREM_SSFX_CODE "), "")
City = IIf(Not
IsDBNull(dsUser Data.Tables("UC BPREM").Rows(0) .Item("UCBPREM_ CITY")),
dsUserData.Tabl es("UCBPREM").R ows(0).Item("UC BPREM_CITY"), "")
lblAddress1.Tex t = IIf(Len(StreetN umber) > 0,
StreetNumber & " ", "") & _
IIf(Len(PreDire ction) > 0,
PreDirection & " ", "") & _
IIf(Len(StreetN ame) > 0,
StreetName & " ", "") & _
IIf(Len(Suffix) > 0, Suffix & "
", "") & _
IIf(Len(PostDir ection) > 0,
PostDirection & " ", "") & _
IIf(Len(Unit) > 0, Unit & " ",
"") & _
IIf(Len(UnitNum ber) > 0,
UnitNumber & " ", "")
lblAddress2.Tex t = IIf(Len(City) > 0, City & ", ",
"") & _
IIf(Len(State) > 0, State & "
", "") & _
IIf(Len(ZipCode ) > 0, ZipCode,
"")
Catch ex As Exception
Throw New Exception("Retr ieve Address Information:
" & ex.InnerExcepti on.Message & " " & ex.Message)
End Try

'add address lines to session variables
Session("Addres s1") = lblAddress1.Tex t
Session("Addres s2") = lblAddress2.Tex t
Session("City") = City
Session("State" ) = State
Session("ZipCod e") = ZipCode

Try
'get amount due ;)
lblAmountDue.Te xt = IIf(Not
IsDBNull(dsUser Data.Tables("SI I_BAL_VIEW").Ro ws(0).Item("BAL ANCE")),
dsUserData.Tabl es("SII_BAL_VIE W").Rows(0).Ite m("BALANCE"), "0")
Catch ex As Exception
Throw New Exception("Retr ieve Amount Due: " &
ex.InnerExcepti on.Message & " " & ex.Message)
End Try

'add amount due to session variables
Session("Amount Due") = lblAmountDue.Te xt

Try
'get amount due date ;)
If (dsUserData.Tab les("DUE_DATE_V IEW").Rows.Coun t 0) Then

lblDueDate.Text =
dsUserData.Tabl es("DUE_DATE_VI EW").Rows(0).It em("DUE_DATE")
Else
lblDueDate.Text = ""
End If

Catch ex As Exception
Throw New Exception("Retr ieve Due Date: " &
ex.InnerExcepti on.Message & " " & ex.Message)
End Try

'add due date to session variables
Session("DueDat e") = lblDueDate.Text

End If
Catch ex As Exception
Session("ErrorM essage") = "AccountAccess. Page_Load: " &
ex.InnerExcepti on.Message & " " & ex.Message
Response.Redire ct("../Error.aspx", False)
End Try
End Sub
Nov 18 '05 #1
2 1594
Consider refactoring your code to improve readability and substantially
lower your maintenance cost.

With that out of the way, I'll have to defer to the holywoord popularized
ockham's razor. In this case, the simplest explanation I see is the
exception is occuring in your final catch block:

Session("ErrorM essage") = "AccountAccess. Page_Load: " &
ex.InnerExcepti on.Message & " " & ex.Message
Response.Redire ct("../Error.aspx", False)

it's possible that ex.InnerExcepti on is null/nothing is my only
guess.....if your code caused a SystemOutOfMemo ry exception for example, I
believe you might see that...

Karl

--
MY ASP.Net tutorials
http://www.openmymind.net/
"James Wallace" <jw******@btuti lities.com> wrote in message
news:a5******** *************** ***@posting.goo gle.com...
I hope that someone can help me out there with this problem.

I get an itermittant problem with our web page that occurs about once
every 10 to 15 days where the only way to fix the problem is to bounce
the web server. The error can be seen below.

I have looked at the stack trace and determined where the error is
occuring but when I look at my code, where it says that I have an
unhandled exception, I have error handling to handle it. You can see
the code below the error message.

What could be casuing this intermittant behaviour.

Thanks

James

*************** *************** *************** *************** *************** * *************** *******ERROR
MESSAGE******** *************** *************** ***
*************** *************** *************** *************** *************** * Server Error in '/' Application.
-------------------------------------------------------------------------- ------
Object reference not set to an instance of an object.
Description: An unhandled exception occurred during the execution of
the current web request. Please review the stack trace for more
information about the error and where it originated in the code.

Exception Details: System.NullRefe renceException: Object reference not
set to an instance of an object.

Source Error:

An unhandled exception was generated during the execution of the
current web request. Information regarding the origin and location of
the exception can be identified using the exception stack trace below.

Stack Trace:

[NullReferenceEx ception: Object reference not set to an instance of an
object.]
login.AccountAc cess.Page_Load( Object sender, EventArgs e) +7514
System.Web.UI.C ontrol.OnLoad(E ventArgs e) +67
System.Web.UI.C ontrol.LoadRecu rsive() +35
System.Web.UI.P age.ProcessRequ estMain() +750
*************** *************** *************** *************** *************** *************** CODE*********** *************** *************** *************** *************** *************** *************** *************** ***************
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArg s) Handles MyBase.Load
Dim PremNo, CustNo, FirstName, MiddleName, LastName As String
Dim StreetName, StreetNumber, PostDirection, PreDirection,
ZipCode, State, Unit, UnitNumber, Suffix, City As String
Dim AmountDue, DueDate, PayByCheck As String

Try
'control page caching so
'that page is not cached
Response.Buffer = True
Response.Expire s = 0
Response.Expire sAbsolute = Now.AddDays(-1)
Response.CacheC ontrol = "no-cache"

If (Not IsPostBack) Then

'************** *************** *************
'****** Fill data in dataset **************
'************** *************** *************
Try
'Get Balance Information
Me.daBalance.Se lectCommand.Par ameters("PremNo ").Value
= Session("PremNo ")
Me.daBalance.Se lectCommand.Par ameters("CustNo ").Value
= Session("CustNo ")
Me.daBalance.Fi ll(dsUserData)
Catch ex As Exception
Throw New Exception("Quer y Balance Information: "
& ex.InnerExcepti on.Message & " " & ex.Message)
End Try

Try
'Get the due date
Me.daDueDate.Se lectCommand.Par ameters("PremNo ").Value
= Session("PremNo ")
Me.daDueDate.Se lectCommand.Par ameters("CustNo ").Value
= Session("CustNo ")
Me.daDueDate.Fi ll(dsUserData)
Catch ex As Exception
Throw New Exception("Quer y Due Date: " &
ex.InnerExcepti on.Message & " " & ex.Message)
End Try

Try
'Get Account Name
Me.daName.Selec tCommand.Parame ters("CustNo"). Value
= Session("CustNo ")
Me.daName.Fill( dsUserData)
Catch ex As Exception
Throw New Exception("Quer y Account Information: "
& ex.InnerExcepti on.Message & " " & ex.Message)
End Try

Try
'Get account service address
Me.daServiceAdd ress.SelectComm and.Parameters( "PremNo").V alue = Session("PremNo ")
Me.daServiceAdd ress.Fill(dsUse rData)
Catch ex As Exception
Throw New Exception("Quer y Account Service
Address: " & ex.InnerExcepti on.Message & " " & ex.Message)
End Try

'set labels with data
lblAcctNo.Text = Session("CustNo ") & "-" &
Session("PremNo ")
Session("AcctNo ") = lblAcctNo.Text

Try
'get data from UCBCUST table and add data to
respective labels
FirstName = IIf(Not
IsDBNull(dsUser Data.Tables("UC BCUST").Rows(0) .Item("UCBCUST_ FIRST_NAME")),
dsUserData.Tabl es("UCBCUST").R ows(0).Item("UC BCUST_FIRST_NAM E"), "")
MiddleName = IIf(Not
IsDBNull(dsUser Data.Tables("UC BCUST").Rows(0) .Item("UCBCUST_ MIDDLE_NAME")), dsUserData.Tabl es("UCBCUST").R ows(0).Item("UC BCUST_MIDDLE_NA ME"), "")
LastName = IIf(Not
IsDBNull(dsUser Data.Tables("UC BCUST").Rows(0) .Item("UCBCUST_ LAST_NAME")),
dsUserData.Tabl es("UCBCUST").R ows(0).Item("UC BCUST_LAST_NAME "), "")
PayByCheck = IIf(Not
IsDBNull(dsUser Data.Tables("UC BCUST").Rows(0) .Item("UCBCUST_ PAY_BY_CHECK_IN D
")), dsUserData.Tabl es("UCBCUST").R ows(0).Item("UC BCUST_PAY_BY_CH ECK_IND"),
"")
lblName.Text = IIf(Len(FirstNa me) > 0, FirstName &
" ", "") & _
IIf(Len(MiddleN ame) > 0, MiddleName
& " ", "") & _
IIf(Len(LastNam e) > 0, LastName,
"")
lblAllowedToPay ByCheck.Text = IIf(Len(PayByCh eck)
0, PayByCheck, "N") Catch ex As Exception
Throw New Exception("Retr ieve Account Information:
" & ex.InnerExcepti on.Message & " " & ex.Message)
End Try

'add data to session variables
Session("Name") = lblName.Text
Session("FirstN ame") = FirstName
Session("LastNa me") = LastName
Session("PayByC heck") = lblAllowedToPay ByCheck.Text

Try
'get address info from UCBPREM table
StreetName = IIf(Not

IsDBNull(dsUser Data.Tables("UC BPREM").Rows(0) .Item("UCBPREM_ STREET_NAME")), dsUserData.Tabl es("UCBPREM").R ows(0).Item("UC BPREM_STREET_NA ME"), "")
StreetNumber = IIf(Not
IsDBNull(dsUser Data.Tables("UC BPREM").Rows(0) .Item("UCBPREM_ STREET_NUMBER") )
, dsUserData.Tabl es("UCBPREM").R ows(0).Item("UC BPREM_STREET_NU MBER"),
"")
PostDirection = IIf(Not
IsDBNull(dsUser Data.Tables("UC BPREM").Rows(0) .Item("UCBPREM_ PDIR_CODE_POST" )
), dsUserData.Tabl es("UCBPREM").R ows(0).Item("UC BPREM_PDIR_CODE _POST"),
"")
PreDirection = IIf(Not
IsDBNull(dsUser Data.Tables("UC BPREM").Rows(0) .Item("UCBPREM_ PDIR_CODE_PRE") )
, dsUserData.Tabl es("UCBPREM").R ows(0).Item("UC BPREM_PDIR_CODE _PRE"),
"")
ZipCode = IIf(Not
IsDBNull(dsUser Data.Tables("UC BPREM").Rows(0) .Item("UCBPREM_ ZIPC_CODE")),
dsUserData.Tabl es("UCBPREM").R ows(0).Item("UC BPREM_ZIPC_CODE "), "")
State = IIf(Not
IsDBNull(dsUser Data.Tables("UC BPREM").Rows(0) .Item("UCBPREM_ STAT_CODE_ADDR" )
), dsUserData.Tabl es("UCBPREM").R ows(0).Item("UC BPREM_STAT_CODE _ADDR"),
"")
Unit = IIf(Not
IsDBNull(dsUser Data.Tables("UC BPREM").Rows(0) .Item("UCBPREM_ UTYP_CODE")),
dsUserData.Tabl es("UCBPREM").R ows(0).Item("UC BPREM_UTYP_CODE "), "")
UnitNumber = IIf(Not
IsDBNull(dsUser Data.Tables("UC BPREM").Rows(0) .Item("UCBPREM_ UNIT")),
dsUserData.Tabl es("UCBPREM").R ows(0).Item("UC BPREM_UNIT"), "")
Suffix = IIf(Not
IsDBNull(dsUser Data.Tables("UC BPREM").Rows(0) .Item("UCBPREM_ SSFX_CODE")),
dsUserData.Tabl es("UCBPREM").R ows(0).Item("UC BPREM_SSFX_CODE "), "")
City = IIf(Not
IsDBNull(dsUser Data.Tables("UC BPREM").Rows(0) .Item("UCBPREM_ CITY")),
dsUserData.Tabl es("UCBPREM").R ows(0).Item("UC BPREM_CITY"), "")
lblAddress1.Tex t = IIf(Len(StreetN umber) > 0,
StreetNumber & " ", "") & _
IIf(Len(PreDire ction) > 0,
PreDirection & " ", "") & _
IIf(Len(StreetN ame) > 0,
StreetName & " ", "") & _
IIf(Len(Suffix) > 0, Suffix & "
", "") & _
IIf(Len(PostDir ection) > 0,
PostDirection & " ", "") & _
IIf(Len(Unit) > 0, Unit & " ",
"") & _
IIf(Len(UnitNum ber) > 0,
UnitNumber & " ", "")
lblAddress2.Tex t = IIf(Len(City) > 0, City & ", ",
"") & _
IIf(Len(State) > 0, State & "
", "") & _
IIf(Len(ZipCode ) > 0, ZipCode,
"")
Catch ex As Exception
Throw New Exception("Retr ieve Address Information:
" & ex.InnerExcepti on.Message & " " & ex.Message)
End Try

'add address lines to session variables
Session("Addres s1") = lblAddress1.Tex t
Session("Addres s2") = lblAddress2.Tex t
Session("City") = City
Session("State" ) = State
Session("ZipCod e") = ZipCode

Try
'get amount due ;)
lblAmountDue.Te xt = IIf(Not
IsDBNull(dsUser Data.Tables("SI I_BAL_VIEW").Ro ws(0).Item("BAL ANCE")),
dsUserData.Tabl es("SII_BAL_VIE W").Rows(0).Ite m("BALANCE"), "0")
Catch ex As Exception
Throw New Exception("Retr ieve Amount Due: " &
ex.InnerExcepti on.Message & " " & ex.Message)
End Try

'add amount due to session variables
Session("Amount Due") = lblAmountDue.Te xt

Try
'get amount due date ;)
If (dsUserData.Tab les("DUE_DATE_V IEW").Rows.Coun t
0) Then

lblDueDate.Text =
dsUserData.Tabl es("DUE_DATE_VI EW").Rows(0).It em("DUE_DATE")
Else
lblDueDate.Text = ""
End If

Catch ex As Exception
Throw New Exception("Retr ieve Due Date: " &
ex.InnerExcepti on.Message & " " & ex.Message)
End Try

'add due date to session variables
Session("DueDat e") = lblDueDate.Text

End If
Catch ex As Exception
Session("ErrorM essage") = "AccountAccess. Page_Load: " &
ex.InnerExcepti on.Message & " " & ex.Message
Response.Redire ct("../Error.aspx", False)
End Try
End Sub

Nov 18 '05 #2
jw******@btutil ities.com (James Wallace) wrote in message news:<a5******* *************** ****@posting.go ogle.com>...
I hope that someone can help me out there with this problem.

I get an itermittant problem with our web page that occurs about once
every 10 to 15 days where the only way to fix the problem is to bounce
the web server. The error can be seen below.

I have looked at the stack trace and determined where the error is
occuring but when I look at my code, where it says that I have an
unhandled exception, I have error handling to handle it. You can see
the code below the error message.

What could be casuing this intermittant behaviour.

Thanks

James

Did you find a solution on this? I have a new, similar issue with a
server running XP. I'm wondering if it has to do with Installing XP
Service Pack 2.

David
Nov 18 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
2199
by: Michael Mossey | last post by:
Runnng python 2.2 on HP-UX, I get intermittant slow startup. Sometimes python starts up in a small fraction of a second, and sometimes takes 3-5 seconds. This applies to any script I run, or just typing 'python' at the prompt. I also observed something similar on Linux. Any ideas what would cause *intermittant* slow startup? -Mike
0
1389
by: Nick Jushchyshyn | last post by:
Having a really strange issue with IIS 6 where the session variable does not stay consistant. The first symptom was that database connections (which use a user entered name/PW stored in the Session) in ASP pages were failing. Finally got to (what I think is) the root issue by creating two ASP pages, one that sets Session("test") = "Hello",...
1
2328
by: Sean C. | last post by:
Helpful folks, We have been having an intermittent and completely unreproducable problem concerning user authentication on Windows 2000: SQL1403N The username and/or password supplied is incorrect. SQLSTATE=08004 DB2 v7.2 fp5 Windows 2000
0
1593
by: Mark Phanides | last post by:
My ASP.NET application intermittantly (but always at same point) redirects to the 'Invalid Syntax Error' web page for some unknown reason. I've created a ASP.NET application written in VB.NET with just two ASPX pages, Login.aspx and Main.aspx (both dynamically generated on each load). Users first hit Login.aspx which prompts for login details,...
2
2259
by: Chuck Ritzke | last post by:
Hi all, I am getting an intermittant error after uploading a project from my development machine. I click on a link which opens an aspx page that, upon page load, reads a very small amount of data from an MS Access database, using ODBC and a stored query. There is no problem on my development machine. On the production server though, I get...
0
1363
by: Steve Schaenzer | last post by:
Hello, I have a windows client that makes a WebService call on regular intervals using a timer. This call is very simple and always takes a very short time to reply. However about every one in ten tries the Call receives a mysterous timeout error. This is very annoying for my users because since it is a syncronus call it locks up the...
0
1450
by: doctordandy | last post by:
I am fairly new to this, but basically the gist of the problem is that I have a login page which Is supposed to redirect to a customer account page once the username and password are validated, this works fine when the user is using Mozilla Firefox, however; when using Internet Explorer the redirection does not work correctly; i.e. the page...
0
1252
by: bob | last post by:
Hi, VS2005 Windows App. Datalayer talking to a local SQL Anywhere 9 Database using OleDb. App runs OK for about a week then crashes in the Datalayer. The crash occurs attempting to retrieve data via a SPROC. The reported error is 'Attempted to read or write protected memory. This is often an indication that other memory is corrupt..'...
1
1107
by: bumble | last post by:
Hi Everyone I have very little knowledge of Javascript or any other language and have built the basics of my website using Dreamweaver. I have built in extra functions just by trying to follow the logic of other scripts etc. However, for only the second time ever, I am posting to a forum with a problem I can't can't solve. The reason I can't...
0
7518
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main...
0
7446
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language...
1
7469
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For...
0
7808
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the...
0
6040
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then...
1
5368
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes...
0
3498
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in...
0
3480
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
1935
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.