Figured it out. It has to do with the debugging and customErrors setting in the web.config. Set them both to off on the production server and it worked.
I am using a web service to perform an update. As I stated when I simply throw a basic ApplicationException (or in any type of exception for that matter) all I get back on my web service call is a generic exception with no type and a status code of 500.
When I throw an ApplicationException and then handle it client side it works perfect locally. If I publish the website to the production server I never get the ApplicationException I just get a generic exception with a statrus code of 500. Anyone have any idea why this is happening?
Why does a local host version of a website export srraight to pdf when given a url parameter but requires a posted parameter in the production version?
Example
/site/Crystal/default.aspx?id=12
will bring up the pdf version report for id 12 on a local development deployment but once published...
I am new with CSS layout and can't for the life of me figure this out. I think it is pretty basic though.
All I want is a page that will expand to the height of the browser. I have a 100 px banner at the top and everything underneathe should fill the page to the bottom.
<div...
that wont work either becasue the actual "remote host" is the client machine since it is being posted technically from the client. I need to know what server(IP) the form is coming from. I amthinking it is not even possible if outside of http_referrer.
I need to be able to identify the IP of the form submitting page. This is the situation. We have an online payments system which redirects to a processing company. The processing company does its thing and then for some asanine reason redirects(actually submits a form) back to our system to...
Are you sure you switched the two table names therefore making the left table JMPSTATUS? That should work. The reason the three don't come up in the first is that of course they don't exist in the join since they are not used by the table you are using as the left joinging table. If you switch...
Another, although with somewhat less integrity, would be to query the db and find the pairs of time. This is making the asumption that a person will not logon from one machine and then another before ending their inital logon on the first machine. If you identified the pairs then you could do...
I am wondering how you are doing the max-min calculation when your tsstamp is not a date or time type field? If you stored these as datetimes I am betting it would be easier for you to do the calculations.
Why not create a session id on each login to uniquely identify seperate logins. Then you can run a simple query like
(pseudo code here)
select distinct session,max - min
from table
where sessionid in (select distinct sessionid from table where userid = n)
group by session
that should do the trick
this is killing me..i have a feeling i am over thinking it. I am trying to return a recordset in a string value. I will explain further...
This is a representation of my DB
ElementPK,ElementParent
1,0
2,1
3,2
4,2
5,2
6,3
7,4
8,5
Now, using a udf with recursion I have no problem returning a...
Actually...i was using strings in the CopyFile call like...
Set cssFile = objFSO.CopyFile("c:\file.txt","c:\inetpub\")
If i throw the paths into variables like my initial example I get an erro like this
Microsoft VBScript runtime (0x800A01A8)
Object required: 'objFSO.CopyFile(...)'...
Set cssFile = objFSO.CopyFile(theFile,albumPath)
actually works and copies the file but I get an error...
Error Type:
Microsoft VBScript runtime (0x800A01A8)
Object required: '[undefined]'
/album/filebuilder.asp, line 42
on the line of the CopyFile. The FileSystemObject works fine...
No...Beta installs with zero GUI. You'll need to download a sepeate gui for working in it. I have used to MS Web DB admin for admining the db but you'll still need some type of SQL parsing tool (winsql or such). There have been rumblings of a supposed Express Manager (comparable to Enterprise...
Did that and no luck. It seems like when you place a span and then reposition it it still holds a the original place for it. I thought when it was repositioned it shifted everything else as if the span was not there in the first place.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.