Hi,
I have an asp page which I can view a database record. At the moment to view I’m viewing the database record via a page through an iframe. This page opens the database and displays the details:
Obviously I don’t want to do use an iframe! I want to be able to call the record through a subroutine.
Basically I figure I should be call a subroutine like this:
I don’t know what to include in the *** section above.
I don’t know where to go from here and I’ve been trying and searching for a long time. Can anyone help?
Thanks.
I have an asp page which I can view a database record. At the moment to view I’m viewing the database record via a page through an iframe. This page opens the database and displays the details:
Code:
Response.Write "<span class='form'>" & "<strong>" & obj_RS1("Engine size") & "<strong>" & "</span>"
Obviously I don’t want to do use an iframe! I want to be able to call the record through a subroutine.
Basically I figure I should be call a subroutine like this:
Code:
<% FindResult "Fiesta", "Ford" %>
Code:
<%
Sub FindResult(Model,Make )
***
End Sub
%>
I don’t know what to include in the *** section above.
I don’t know where to go from here and I’ve been trying and searching for a long time. Can anyone help?
Thanks.