
October 16th, 2000, 11:53 PM
|
|
Contributing User
|
|
Join Date: Dec 2002
Posts: 14,578
  
Time spent in forums: < 1 sec
Reputation Power: 22
|
|
|
Can a Array be assinged to a Input Tag which is Hidden
<i><b>Originally posted by : Chris.g (Chrisg@apdomail.sgp.hp.com)</b></i><br /><br />Hi There,<br />Can a Array be assinged to a Input Tag,<br />Session("Profile") is a populated array, which I am trying assign to a Input Tag which is of type Hidden, it does not work, why so?, can't a array be assigned to a Input Tag, if so what is the alternative.<br /><br /><br />Value contained within Session("Profile")<br />Redim CustCodeArray(1,1)<br />CustCodeArray(0,0)= "MAXF1001"<br />CustCodeArray(0,1)= "Shipped"<br />CustCodeArray(1,0)= "MAXF1002"<br />CustCodeArray(1,1)= "Invoiced"<br /><br />Session("Profile")=CustCodeArray(1,1)<br /><br /><br /><br /><FORM name="SelectCustomer" Method=POST><br /> <INPUT TYPE=HIDDEN NAME="CustomerNo" value="<%=Session("Customer_No")%>"><br /> <INPUT TYPE=HIDDEN NAME="CountryCode" value="<%=Session("CountryCode")%>"><br /> <INPUT TYPE=HIDDEN NAME="Profile" value="<%=Session("Profile")%>"><br /></Form<br /><br /><br /><br />Kindest regards,<br />Chris.G<br /><br />
|