hi everybody, i am new to asp.net. I wanna hav a flex grid that resembles a table where the user can enter the data. i wrote the following code m printing a table with textboxes embedded in it.. but m not able to access the text box declared using dim i, j as integer dim str as string sub page_Load response.write("<table>") for i=0 to 5 response.write("<tr>") for j=0 to 5 response.write("<td><input type="text" name="txt"" &="" csng(i)="" csng(j)=""></input></td>") next response.write("</tr>") next resposne/write("</table>") str="txt" for i=0 to 5 for j=0 to 5 str1 = request.form(str & csng(i) & csng(j)) response.write(str1) next next end sub The code is getting compiled without any error but the str1's value is null.. what do i do? i wanna create a flexgrid.. pl reply as soon as possible thanks in advance <div class="ForumSig">Tejaswini</div>
T
Tejaswini
@Tejaswini