Err.raise
I have a VB compoonent I am using:
err.raise err.number, err.source, err.description
my ASP page doesnt show me the error raised....its shows err.number = 0
I have a VB compoonent I am using:
err.raise err.number, err.source, err.description
my ASP page doesnt show me the error raised....its shows err.number = 0
The page loads and allows the user to enter an MLS number. After the user enters the number and clicks on the retrieve button the page retrieves a record from the database with that key and loads the information into a series of textboxes and lists for editing.
If the user enters and invalid key and no records are retrieved a lable displays a message. After editing the user hits save and the updates are made to the database.
In reality after the user clicks retrieve and the record is loaded the buttons on the form go dead. If the user failed to retrieve a record, the lable is displayed, and the buttons still work. I have no ideas as to why this would be happening.