- Home
·
- OLE/COM/DCOM/Active-X
·
- For ActiveX Control developers - Use ASP to get Online information for your ActiveX control - For e
For ActiveX Control developers - Use ASP to get Online information for your ActiveX control - For e
For ActiveX Control developers - Use ASP to get Online information for your ActiveX control - For eg. Order Status
API Declarations
'***** Place a label named : lblStatus
'***** This label should display either Approved or Rejected !!!
Rate For ActiveX Control developers - Use ASP to get Online information for your ActiveX control - For e
(2(2 Vote))
lblStatus.Caption = inet1.openURL "http://YourSite.com/ASPDirectory/CheckStatus.asp?OrderNo=" & txtOrderNo.Text
'Code for ASP Page
<% Language=VBScript %>
<%
** Establish connection with the database
** Query the database
If MyDatabase.StatusField = "A" then
Response.Write "Accepted"
Else
Response.Write "Rejected"
End if
%>
'**** That's it.... happy coding !!!!
For ActiveX Control developers - Use ASP to get Online information for your ActiveX control - For e Comments
No comments yet — be the first to post one!
Post a Comment