S
Steve
HI I've run into a big problem
I placed my webpage scripting in the code behind
here i put out form tags with table linement stufffffffffffffff
Response.Write("<form method=post action=catalog300.aspx
id=Formpost>")
Response.Write("<br><div align=center>")
Response.Write("<table border=0 width=""90%"" cellpadding=0
cellspacing=0 height=60>")
.......
.......
ect ect
then I read a direct file in and place the page out as such
dim wf as webfile ' this structure is defined in a module
'then I loop through the file and place the lines out
FileOpen(1, "c:\files\webfile.txt", OpenMode.Random, ,
OpenShare.Shared, Len(wf))
do
s = x + 1 'x is used to get the record as well as part of the unique
name of the checkbox so I know which item was selected.......
FileGet(1, wf, x)
........ more code
........
I also place a check box out all with unique names
'qty
Response.Write("<td width=70 bgcolor=" & bg_color & " align=right
nowrap height=29>" & ar2(x) & " * " & wf.stock_unit_price)
.........more code
.........
loop until eof(1)
this works great as far as how the page looks with the data
As you know when you put things out with the response.write it places
everything at the beginning of the html, even the
''''''' the reponse.write will be outputed here before the following
html
<%@ Page Language="vb" AutoEventWireup="false"
Codebehind="catalog300.aspx.vb" Inherits="catalog.catalog300"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
Problem is when i try to retrieve a field that was dynamically
outputed from the code behind with the code behind as such
test = request("a field")
it comes back with nothing
any help would be appreciated
PS this all works in our regular asp scripts.....
Thanks Steve
I placed my webpage scripting in the code behind
here i put out form tags with table linement stufffffffffffffff
Response.Write("<form method=post action=catalog300.aspx
id=Formpost>")
Response.Write("<br><div align=center>")
Response.Write("<table border=0 width=""90%"" cellpadding=0
cellspacing=0 height=60>")
.......
.......
ect ect
then I read a direct file in and place the page out as such
dim wf as webfile ' this structure is defined in a module
'then I loop through the file and place the lines out
FileOpen(1, "c:\files\webfile.txt", OpenMode.Random, ,
OpenShare.Shared, Len(wf))
do
s = x + 1 'x is used to get the record as well as part of the unique
name of the checkbox so I know which item was selected.......
FileGet(1, wf, x)
........ more code
........
I also place a check box out all with unique names
'qty
Response.Write("<td width=70 bgcolor=" & bg_color & " align=right
nowrap height=29>" & ar2(x) & " * " & wf.stock_unit_price)
.........more code
.........
loop until eof(1)
this works great as far as how the page looks with the data
As you know when you put things out with the response.write it places
everything at the beginning of the html, even the
''''''' the reponse.write will be outputed here before the following
html
<%@ Page Language="vb" AutoEventWireup="false"
Codebehind="catalog300.aspx.vb" Inherits="catalog.catalog300"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
Problem is when i try to retrieve a field that was dynamically
outputed from the code behind with the code behind as such
test = request("a field")
it comes back with nothing
any help would be appreciated
PS this all works in our regular asp scripts.....
Thanks Steve