When you are trying to retirve data from oracle database from classic ASP. You will get the bellow error.
Microsoft Cursor Engine error '80004005'
Data provider or other service returned an E_FAIL status.
/localhost/file.asp, line 68
For this you need to add NVL function for the null value column
Friday, June 18, 2010
Data provider or other service returned an E_FAIL status.
When you are trying to retirve data from oracle database from classic ASP. You will get the bellow error.
Microsoft Cursor Engine error '80004005'
Data provider or other service returned an E_FAIL status.
/localhost/file.asp, line 68
For this you need to add NVL function for the null value column
Microsoft Cursor Engine error '80004005'
Data provider or other service returned an E_FAIL status.
/localhost/file.asp, line 68
For this you need to add NVL function for the null value column
Friday, June 11, 2010
Execute exe files through javascript
Before running the bellow script, you need to midify the setting of the internet explorer
- Open IE
- Click Tools -> Internet options
- Click security Tab
- Select local intranet (Based on your requirement)
- Click Custom level button
- find "Initialize and script ActiveX controls not marked as safe for scripting"
- Click the enable button
- Click "Ok"
- Click "OK"
- Close your browser and re-open to test it
function executeCommands()
{
var oShell = new ActiveXObject("Shell.Application");
var commandtoRun = "iexplore.exe";
oShell.ShellExecute(commandtoRun, "", "", "open", "1");
}
Subscribe to:
Posts (Atom)