Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements

5 Posted Topics

Member Avatar for sourceskill

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 …

Member Avatar for sourceskill
0
119
Member Avatar for vikas05nitb

Have you tried to get the .exe files to install from a command prompt? Maybe the autorun file is corrupt.

Member Avatar for vikas05nitb
0
94
Member Avatar for alicepriya

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"; …

Member Avatar for sourceskill
0
118
Member Avatar for sourceskill

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 …

0
53
Member Avatar for Rambomst

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"))) …

Member Avatar for sourceskill
0
108

The End.