I have inherited a VB.NET dll that I am using from common asp.
My problem is to get the messages from the dll to the Ie client, I can see the messages in the Eventlog on the IIS server so I know they are there, but how do I get them to show in IE?
The original code was:
MsgBox("Kunne ikke finde databasenavn udfra den angivne DSN: " & DSN)
I tried to change that to:
Result = MessageBox.Show ("Kunne ikke finde databasenavn udfra den angivne DSN: " & DSN, "Fejl", MessageBoxButto ns.OK, MessageBoxIcon. Error, MessageBoxDefau ltButton.Button 1, MessageBoxOptio ns.DefaultDeskt opOnly, False)
But they still dont show up on the client, so how do I do that?
Thanks
Betina
My problem is to get the messages from the dll to the Ie client, I can see the messages in the Eventlog on the IIS server so I know they are there, but how do I get them to show in IE?
The original code was:
MsgBox("Kunne ikke finde databasenavn udfra den angivne DSN: " & DSN)
I tried to change that to:
Result = MessageBox.Show ("Kunne ikke finde databasenavn udfra den angivne DSN: " & DSN, "Fejl", MessageBoxButto ns.OK, MessageBoxIcon. Error, MessageBoxDefau ltButton.Button 1, MessageBoxOptio ns.DefaultDeskt opOnly, False)
But they still dont show up on the client, so how do I do that?
Thanks
Betina
Comment