Here's where I need assistance, please:
I am passing a 'transaction id' value to an sql server stored procedure that will return all rows that have that transaction id.
If rows are returned, I display the data in an html table.
If no rows are returned, I need to display a data entry window (html table).
How do I get the data entry window to display using if/else logic in my vbscript?
-------------------
If NOT ( objRs.BOF And objRs.EOF ) Then
Call writeRecords(pPgNbr, objRs)
Else
=====>>>>>>>>>>HERE IS WHERE I WANT MAKE THE DATA ENTRY WINDOW POP UP
End If
Thanks for any assistance.
I am passing a 'transaction id' value to an sql server stored procedure that will return all rows that have that transaction id.
If rows are returned, I display the data in an html table.
If no rows are returned, I need to display a data entry window (html table).
How do I get the data entry window to display using if/else logic in my vbscript?
-------------------
If NOT ( objRs.BOF And objRs.EOF ) Then
Call writeRecords(pPgNbr, objRs)
Else
=====>>>>>>>>>>HERE IS WHERE I WANT MAKE THE DATA ENTRY WINDOW POP UP
End If
Thanks for any assistance.