Sending html page values to ASP page

Sending html page values to ASP page

am 21.04.2008 21:27:41 von mark

Hi Gurus,
I am pretty new in ASP.net, so please help me solve a problem.
We have many HTML pages which we do not want to change.

What we want is on a button press it should goto a ASP page with all the
values.

I'll appreciate if I get some source example which I can try.

Please help me.
Mark

Re: Sending html page values to ASP page

am 21.04.2008 22:03:09 von mark

"Mark" wrote in message
news:O0cEIX%23oIHA.4616@TK2MSFTNGP05.phx.gbl...

> We have many HTML pages which we do not want to change.
>
> What we want is on a button press it should goto a ASP page with all the
> values.

Can you clarify please:

1) Where is this button?

2) When you say an ASP page, do you actually mean an ASP.NET page? They're
very different...

3) What do you mean by "all the values"?


--
Mark Rae
ASP.NET MVP
http://www.markrae.net

RE: Sending html page values to ASP page

am 21.04.2008 22:14:00 von pbromberg

What you are describing is a simple FORM post. As long as all the "values"
are inside the FORM tags, they will be posted to the target pages. And be
careful using the term "ASP" - that means classic ASP, this is for ASP.NET.
-- Peter
To be a success, arm yourself with the tools you need and learn how to use
them.

Site: http://www.eggheadcafe.com
http://petesbloggerama.blogspot.com
http://ittyurl.net


"Mark" wrote:

> Hi Gurus,
> I am pretty new in ASP.net, so please help me solve a problem.
> We have many HTML pages which we do not want to change.
>
> What we want is on a button press it should goto a ASP page with all the
> values.
>
> I'll appreciate if I get some source example which I can try.
>
> Please help me.
> Mark
>
>
>

Re: Sending html page values to ASP page

am 21.04.2008 22:46:28 von mark

Thanks for your reply.
I have created an test example to clarify.

On this form I have one input textbox and one Submit button. On submit I
want to process the data(Text1) in Validate.aspx.vb.










But when code reaches Validate Page_Load event, then Request.Form.Count
returns 0, when I am expecting Text1 value.

Public Partial Class Validate
Inherits System.Web.UI.Page

Protected Sub Page_Load(ByVal sender As Object, ByVal e As
System.EventArgs) Handles Me.Load
If Request.Form.Count > 0 Then
Me.TextBox1.Text = Request.Form("Text1")
End If
End Sub
End Class

Tell me what am I doing wrong.
Thanks, Mark



"Mark Rae [MVP]" wrote in message
news:Olso5q%23oIHA.4672@TK2MSFTNGP05.phx.gbl...
> "Mark" wrote in message
> news:O0cEIX%23oIHA.4616@TK2MSFTNGP05.phx.gbl...
>
>> We have many HTML pages which we do not want to change.
>>
>> What we want is on a button press it should goto a ASP page with all the
>> values.
>
> Can you clarify please:
>
> 1) Where is this button?
>
> 2) When you say an ASP page, do you actually mean an ASP.NET page? They're
> very different...
>
> 3) What do you mean by "all the values"?
>
>
> --
> Mark Rae
> ASP.NET MVP
> http://www.markrae.net

Re: Sending html page values to ASP page

am 21.04.2008 23:07:19 von mark

Guys,
It started working when I replaced ID with Name.


Thanks guys for your help.
Mark


"Mark" wrote in message
news:%23IcWDD$oIHA.4912@TK2MSFTNGP03.phx.gbl...
> Thanks for your reply.
> I have created an test example to clarify.
>
> On this form I have one input textbox and one Submit button. On submit I
> want to process the data(Text1) in Validate.aspx.vb.
>


>

>

>
>

>
>
> But when code reaches Validate Page_Load event, then Request.Form.Count
> returns 0, when I am expecting Text1 value.
>
> Public Partial Class Validate
> Inherits System.Web.UI.Page
>
> Protected Sub Page_Load(ByVal sender As Object, ByVal e As
> System.EventArgs) Handles Me.Load
> If Request.Form.Count > 0 Then
> Me.TextBox1.Text = Request.Form("Text1")
> End If
> End Sub
> End Class
>
> Tell me what am I doing wrong.
> Thanks, Mark
>
>
>
> "Mark Rae [MVP]" wrote in message
> news:Olso5q%23oIHA.4672@TK2MSFTNGP05.phx.gbl...
>> "Mark" wrote in message
>> news:O0cEIX%23oIHA.4616@TK2MSFTNGP05.phx.gbl...
>>
>>> We have many HTML pages which we do not want to change.
>>>
>>> What we want is on a button press it should goto a ASP page with all the
>>> values.
>>
>> Can you clarify please:
>>
>> 1) Where is this button?
>>
>> 2) When you say an ASP page, do you actually mean an ASP.NET page?
>> They're very different...
>>
>> 3) What do you mean by "all the values"?
>>
>>
>> --
>> Mark Rae
>> ASP.NET MVP
>> http://www.markrae.net
>
>