Is it possible that the server thinks *it* handles that domain?
I ran into this once, trying to use the foo.com mail server to send to garbage bar@foo.com address. It would blow up when I tried to send instead of bouncing the mail, which was contrary to expectations.
Brian Begy
Chief...
Are you sure the email is getting passed correctly?
This sounds like some crazy threading bug where what you think is happening isn't really what is happening.
Brian Begy
Chief Database Guy
Chicago Data Solutions
www.chicagodatasolutions.com
Are you sure you want to store something dependent on the value of two fields? If you can always calculate the answer, you could run into problems on updates. If somebody updates bioID but doesn't run the check, your combine column will be wrong.
If you must store this value, I would suggest...
Do you have to do it all in one go? Couldn't you use one regex for comma-ed amounts and another for comma-less.
Personally, I distrust regex (my background as a non-unix guy showing here), and avoid putting too much functionality in a single line of regex gibberish.
Brian Begy
Chief Database...
Is scrollPos actually posting back?
Is it being overwritten somehow on doc load? The firebug extension is your friend here.
Brian Begy
Chief Database Guy
Chicago Data Solutions
www.chicagodatasolutions.com
I don't understand the question. You want to create an arbitrary number of controls at runtime? You can always add them programatically.
dim myChild as ctlChild
myChild = new ctlChild()
myParent.Controls.Add(myChild)
The trick with that is to make sure you get you ID properties right so...
You can't reuse one of the built in config params that get passed into initialize?
Brian Begy
Chief Database Guy
Chicago Data Solutions
www.chicagodatasolutions.com
SELECT (SELECT Top 1 Price FROM tblEquipment_Pricelists WHERE EquipmentID = EqptID And PriceListID = 0) AS PL1, (SELECT Top 1 Price FROM tblEquipment_Pricelists WHERE EquipmentID = EqptID And PriceListID = 1) AS PL2 , tblEquipment.EqptID, tblEquipment.EqptName FROM tblEquipment ORDER BY...
tempVal = 0
tempVal = rstEqpt("PL1")
if IsNull(tempVal) then
if request.QueryString("CloneFrom")>0 then
tempVal = rstEqpt("PL2")
logError(297) <<--prints error to screen. No error detected.
end if
end if
if IsNull(tempVal) then
tempVal = 0
else
response.Write...
A client has an asp 3 application that pulls data from an MS Access db.
The recordset fields can be either numeric or null, but sometimes when we try to access a field (even when it contains valid data), we get the 101 error. Sometimes the same recordset works fine.
Any suggestions? I'm...
A client has an asp 3 application that pulls data from an MS Access db.
The recordset fields can be either numeric or null, but sometimes when we try to access a field (even when it contains valid data), we get the 101 error. Sometimes the same recordset works fine.
Any suggestions? I'm...
when logged in to the web box can you query the db using your credentials not in asp.net? Like query manager or standalone console app ?
Brian Begy
BugSentry - Automatic error reporting
www.bugsentry.com
So are you using integrated security on the sql connection or username/pwd?
If integrated, when do you open it? Before or after AD authentication?
Brian Begy
BugSentry - Automatic error reporting
www.bugsentry.com
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.