-------problem----
Hi
error : split(
String) is undefined for the type String
this is the compiler error i am getting.
I had java.io.*,java.util.*,java.lang.* imported in the
jsp.
Can anybody help me out.
-----------
----code --------------------
<tr><td>Subject of Issue <select name="selName">
<%
try{
//String theBR;
String txtValue = "";
File fin=new File("D:/TestData/data.txt");
FileReader fr=new FileReader(fin);
BufferedReader br=new BufferedReader(fr);
String theBR=br.readLine();
String[] theSplit=theBR.split(",");
for(int i=0;i<theSplit.length;i++)
{
%>
<option value="<%=theSplit[i]%>" selected><%=theSplit[i]%></option>
<%
out.write(" - "+theSplit[i]); }}
catch(Exception Ex)
{System.out.println("exception in getting connection"+Ex.getMessage()); }
%>
</select>
---------------------------------------