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
~114 People Reached
Favorite Forums
Favorite Tags
asp x 3
Member Avatar for tbabe

<%@ LANGUAGE="VBSCRIPT" %> <% Dim objCon Dim objRS Dim str_DSN Dim strSQL Dim objCmd Dim myArray str_DSN = "filedsn=live.dsn" myArray = "" Set objCon = Server.CreateObject("ADODB.Connection") With objCon .ConnectionString = str_DSN .CursorLocation = 3 'adUseClient Cursor .Open End With myString = trim(Request.Form("SalesPart")) myArray=Split(myString,",") For i = LBound(myArray) TO UBound(myArray) 'Response.Write …

Member Avatar for tbabe
0
114