473,803 Members | 3,422 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

desperately needing help with a Server Error

hey... i know NOTHING about sql server, .net framework or probably anything
else on sql monster. i am a novice access user, self-taught for about 9
months now and have only a basic understanding of vba. that being said, i
need some help...8)

i have a web site that i used to routinely visit for my job that performs
calculations for monthly car payments based on about 20 user-entered fields.
the problem is that about 3 months ago, it stopped working -- when you hit
the calculate button, the screen will seem to refresh as normal but either
nothing comes up in the monthly payment box, or if it's there, when you click
the print button (and you HAVE to click this button as opposed to printing
right from internet explorer), the following error occurrs:

Server Error in '/' Application

..Net SqlClient Data Provider::Proce dure'sp_MW_tblD eals_Update_Mai n_Finance'
expects parameter '@lp_mny_D_Sell ing_Price', which was not supplied.

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.

Stack Trace: (i will repost this if you need to see it -- it's a little
lengthy)

Version Information: Microsoft .NET Framework Version:1.1.432 2.2300; ASP.NET
Version:1.1.432 2.2300

Now, here's the weird bit. this is NOT a problem with the web site. it
isn't a problem with internet explorer (99%) or adobe. i know this because
if i log off of windows under my normal user id, and log in as admin, it will
work. the admin id has minimal files, software, etc.. just like most pc's
i'm sure. i uninstalled the .net framework and reinstalled it using version
2.0 and i still get the same error identifying version 1.1.4322.2300. I have
called tech support for this web site but they are useless, trying to have me
delete temp internet files and cookies and not much else. i have created a
new user id on this pc just to be able to use this web site (which despite my
slow pace at adressing this issue due to lack of company pressure has become
a hot-button for my bosses all of a sudden).

i apologize for the way in which this question was worded, if it even makes
sense at all. i tripped on to this board from access monster and thought it
a stroke of dumb luck, considering i had no idea of where to turn for help
with this. thanks for looking.

*** i posed this on sql server monster as well, not knowing if here or there
was the correct location. ***

--
Greg

Message posted via DotNetMonster.c om
http://www.dotnetmonster.com/Uwe/For...p-net/200605/1
May 16 '06 #1
4 1292
Your call to the stored procedure is failing, because you are not passing
the correct number of arguments (like the error says)

Search your code for sp_MW_tblDeals_ Update_Main_Fin ance and see where/how
the parameters are set.

Then open SQL Enterprise Manager, and drill down to this stored procedure
and open it, and look for the parameters it's expecting

Jeff

"ka******@comca st.net" <u15580@uwe> wrote in message
news:6057154a5c a93@uwe...
hey... i know NOTHING about sql server, .net framework or probably
anything
else on sql monster. i am a novice access user, self-taught for about 9
months now and have only a basic understanding of vba. that being said, i
need some help...8)

i have a web site that i used to routinely visit for my job that performs
calculations for monthly car payments based on about 20 user-entered
fields.
the problem is that about 3 months ago, it stopped working -- when you hit
the calculate button, the screen will seem to refresh as normal but either
nothing comes up in the monthly payment box, or if it's there, when you
click
the print button (and you HAVE to click this button as opposed to printing
right from internet explorer), the following error occurrs:

Server Error in '/' Application

.Net SqlClient Data
Provider::Proce dure'sp_MW_tblD eals_Update_Mai n_Finance'
expects parameter '@lp_mny_D_Sell ing_Price', which was not supplied.

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.

Stack Trace: (i will repost this if you need to see it -- it's a little
lengthy)

Version Information: Microsoft .NET Framework Version:1.1.432 2.2300;
ASP.NET
Version:1.1.432 2.2300

Now, here's the weird bit. this is NOT a problem with the web site. it
isn't a problem with internet explorer (99%) or adobe. i know this
because
if i log off of windows under my normal user id, and log in as admin, it
will
work. the admin id has minimal files, software, etc.. just like most pc's
i'm sure. i uninstalled the .net framework and reinstalled it using
version
2.0 and i still get the same error identifying version 1.1.4322.2300. I
have
called tech support for this web site but they are useless, trying to have
me
delete temp internet files and cookies and not much else. i have created
a
new user id on this pc just to be able to use this web site (which despite
my
slow pace at adressing this issue due to lack of company pressure has
become
a hot-button for my bosses all of a sudden).

i apologize for the way in which this question was worded, if it even
makes
sense at all. i tripped on to this board from access monster and thought
it
a stroke of dumb luck, considering i had no idea of where to turn for help
with this. thanks for looking.

*** i posed this on sql server monster as well, not knowing if here or
there
was the correct location. ***

--
Greg

Message posted via DotNetMonster.c om
http://www.dotnetmonster.com/Uwe/For...p-net/200605/1

May 16 '06 #2
um... i don't have access to the code. it's not my website. the site is a
vendor of my company's and they keep telling me that my pc is the problem.

Jeff Dillon wrote:
Your call to the stored procedure is failing, because you are not passing
the correct number of arguments (like the error says)

Search your code for sp_MW_tblDeals_ Update_Main_Fin ance and see where/how
the parameters are set.

Then open SQL Enterprise Manager, and drill down to this stored procedure
and open it, and look for the parameters it's expecting

Jeff
hey... i know NOTHING about sql server, .net framework or probably
anything

[quoted text clipped - 59 lines]
there
was the correct location. ***


--
Greg

Message posted via DotNetMonster.c om
http://www.dotnetmonster.com/Uwe/For...p-net/200605/1
May 17 '06 #3
Um, no. You are getting a server error, not a client error.

Try it from another pc to verify.

Jeff
"ka******@comca st.net via DotNetMonster.c om" <u15580@uwe> wrote in message
news:6067108e4e ba5@uwe...
um... i don't have access to the code. it's not my website. the site is
a
vendor of my company's and they keep telling me that my pc is the problem.

Jeff Dillon wrote:
Your call to the stored procedure is failing, because you are not passing
the correct number of arguments (like the error says)

Search your code for sp_MW_tblDeals_ Update_Main_Fin ance and see where/how
the parameters are set.

Then open SQL Enterprise Manager, and drill down to this stored procedure
and open it, and look for the parameters it's expecting

Jeff
hey... i know NOTHING about sql server, .net framework or probably
anything

[quoted text clipped - 59 lines]
there
was the correct location. ***


--
Greg

Message posted via DotNetMonster.c om
http://www.dotnetmonster.com/Uwe/For...p-net/200605/1

May 17 '06 #4
I see that it works if you are a local admin on your workstation.

Possibly you have have configured your normal user account to not accept
cookies or scripting, so session information can't be persisted.

Perhaps add this site to your IE "safe" list. Check your browser settings
under Tools/Internet Settings. Compare those settings between you and as an
admin.

And the .NET framework mentioned is on the server, not your workstation.
This is a server error, keep in mind.

At any rate, your vendor has unhandled exceptions (poor coding)

Jeff
"ka******@comca st.net via DotNetMonster.c om" <u15580@uwe> wrote in message
news:6067108e4e ba5@uwe...
um... i don't have access to the code. it's not my website. the site is
a
vendor of my company's and they keep telling me that my pc is the problem.

Jeff Dillon wrote:
Your call to the stored procedure is failing, because you are not passing
the correct number of arguments (like the error says)

Search your code for sp_MW_tblDeals_ Update_Main_Fin ance and see where/how
the parameters are set.

Then open SQL Enterprise Manager, and drill down to this stored procedure
and open it, and look for the parameters it's expecting

Jeff
hey... i know NOTHING about sql server, .net framework or probably
anything

[quoted text clipped - 59 lines]
there
was the correct location. ***


--
Greg

Message posted via DotNetMonster.c om
http://www.dotnetmonster.com/Uwe/For...p-net/200605/1

May 17 '06 #5

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

Similar topics

2
1622
by: JDevine | last post by:
Hey. I posted a info about a program I have written that uses google to get and download files by type and site. I need HELP!!! This program is finished except for 2 features which, having tried for two weeks to create I cannot. This is my first program EVER. I simply an stuck. Please help. I was allowed by my employer to experiment with programing / open source. I'd like to be able to deliver a complete program, (so I can possibly...
7
1877
by: Rodney King | last post by:
Hi, I have developed an ASP page which dynamically displays a list of checkbox options based on a SQL statement. Here is my code: <div style="OVERFLOW:auto; Height: 150px"> <table> <% dim adOpenForwardOnly, adLockReadOnly dim adCmdTable, ctr, checkboxID
1
1983
by: rdshultz | last post by:
I'm a complete newbie. Need to insert a Company logo into a database column to use later on in a check printing application. Read how to insert the pointer instead of the object into the column. Below is what I did: SET QUOTED_IDENTIFIER OFF GO INSERT INTO BankInfo (CoLogo) VALUES(0xFFFFFFFF)
8
477
by: frank | last post by:
Below is some code for doing and insert into one of my tables. The inserts do not work because a duplicate key exists, which I want to happen. The problem is, I cannot get access to return an error for this condition. What can I do to get access to return an error on my query? Thanks
2
2299
by: Lior | last post by:
Hi, I have an ASP.NET website that crashes under heavy load. I use a SQL Server DB. I get around 5500 hits per day. I keep getting the timeout expieried connection pool error. Sometimes it even throws and error about a DataReader connection being already open even though I only use Data Sets in my code. Please take a look and see if you can find my leak because I'm going nuts here and am losing hope... I keep blaming the server and the...
16
2319
by: peshekeedweller | last post by:
Using asp.net 1.1. vb.net 2003. I am trying to connect to a remote sql server 2000 on a virtual machine running windows 2000 server. I can connect through the server explorer in visual studio, but cannot connect through code. I have done it before and can not do it now; I don't know what changed. (I also cannot connect to local Access database through code though I can from server explorer.) The code is: conn = New SqlConnection("data...
10
1762
by: Susan Baker | last post by:
Hi Guys (and girls), I am in a bit of a bind. I'm looking for a simple "proof of concept" C# app (WinForm OR console) that sends a web request to a simple PHP script and receives BINARY data back from the PHP script. Binary data is necessary because I want to be able to send files as well as compressed (zipped) data. The example PHP script can ofcourse, simply make up some dummy data and send it to the C# app. I have tried desperately...
6
3524
by: NutsAboutVB | last post by:
Hello, I am a .NET programmer and I have a JPEG image file (from digital camera) of about 109 KB's in size, when I open it and save it (without making any alterations at all, just going to File --> Save) in MS Photo Editor, the file is automatically shrunk in size to 81 KB's. When doing the same thing in MS Paint, the file is shrunk to 54 KB's. The file has the same number of pixels after both saves (as expected). My question follows...
8
1894
by: Dameon99 | last post by:
my program compiles without problems but when i try to run it pauses shortly and then crashes. When i set it to debug it came up with the following message: "An Access Violation (Segmentation Fault) raised in your program." Ill put my code below. can anyone see why it is doing this? /* Program Function: Reads in data on a boolean matrix (/s) and outputs * whether the file has parity, is corrupt or the coordinates of the bit...
0
9565
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 synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10317
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10295
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 most users, this new feature is actually very convenient. If you want to control the update process,...
0
9125
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 launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7604
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 instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6844
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5501
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 the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
4275
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
2
3799
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.