No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
5 Posted Topics
I'm getting a runtime error on a for next loop and need: Here's my code: [CODE]<% for i=1 to Trim(UCase(Request.QueryString("print"))).Count If Trim(UCase(Request.QueryString("print"))) (i) = Trim(UCase(rsAuto.Fields.Item("vin").Value)) Then %> <tr> <td width="10%" height="45" align="center" valign="middle"><%=(rsAuto.Fields.Item("year").Value)%></td> <td width="15%" align="center" valign="middle"><%=(rsAuto.Fields.Item("make").Value)%></td> <td width="30%" align="center" valign="middle"><%=(rsAuto.Fields.Item("vin").Value)%></td> <td width="15%" align="center" valign="middle"><%=(rsAuto.Fields.Item("title").Value)%></td> <td width="25%" align="center" valign="middle"><%=(rsAuto.Fields.Item("ticket").Value)%></td> <td …
Have you tried to get the .exe files to install from a command prompt? Maybe the autorun file is corrupt.
Here is an example I googled to find out: <%@ Page Debug="true" %> <%@ Import Namespace="System.Data" %> <%@ Import Namespace="System.Data.OleDb" %> <script language="C#" runat="server"> void Page_Load (Object sender, EventArgs e) { OleDbConnection objConnection = null; OleDbCommand objCmd = null; String strConnection, strSQL; strConnection = "Provider=Microsoft.Jet.OleDb.4.0;"; // strConnection += @"Data Source=C:\Northwind.mdb"; …
I have kind of the same question as Rambomst, except I need the query string to populate the values for the IN statement this is the code I have but it's not working and I'm stuck and am in DIRE need of an answer: <% Dim rsAuto__print For i=1 to …
I have the same question somewhat... except I need the query string to populate the values for the IN statement this is the code I have but it's not working and I'm stuck and am in DIRE need of an answer: <% Dim rsAuto__print For i=1 to (Trim(UCase(Request.QueryString("print"))).Count If (Trim(UCase(Request.QueryString("print"))) …
The End.
sourceskill