Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

[code] <% Call OpenConnection()

Status
Not open for further replies.

RushiShroff

Programmer
Jan 23, 2002
216
IN
Code:
<%
Call OpenConnection()
SQLGetIndArr=&quot;select Software_Industry from Software_Industry where Software_ID=1&quot;
Call OpenRecordset(SQLGetIndArr)
If Not objRs.EOF then
	IndArr=objRs.getRows()
	Call CloseRecordset()	
	IndArrJoin=Join(IndArr)
	Response.Write IndArrJoin	
Else
	IndArr=&quot;&quot;
	Call CloseRecordset()
End If	
%>

So you must've understood.
I want to take all Industries for particular application and take them as an array.
Then I want to convert it in a string.

But I am not able to get it.
Response.Write IndArrJoin not working.

Array index problem ??	 Rushi Shroff           Rushi@emqube.com
&quot;Life is beautiful.&quot;
 
well I have solved this by looping through an array.
But somebody can tell me by using Join function hot to do it ?? Rushi Shroff Rushi@emqube.com
&quot;Life is beautiful.&quot;
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top