954,560 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

request.form is not working in asp.net

I want to retrieve data from controls in the requested page to other page by
using request.form(control name) but this is not working for me.I tried both response.redirect and also server.transfer for redirect to new page but it is not working for both the commands.

ramareddy_dotne
Newbie Poster
15 posts since May 2005
Reputation Points: 10
Solved Threads: 0
 

Here's an example. Lets say you have page1.aspx with a textbox control. You want a user to click a next button, transfering to page2.aspx and writting the text out on that page.

The code for button click on page1.aspx

Private Sub btnNext_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnNext.Click
        Dim context As HttpContext = HttpContext.Current
        context.Items.Add("strFirstName", TextBox1.Text)
        Server.Transfer("page2.aspx", True)
    End Sub


The page_load for the page2.aspx:

Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        'Put user code to initialize the page here
        Dim context As HttpContext = HttpContext.Current
        Response.Write("Your First Name is: " & context.Items("strFirstName"))
    End Sub


-sypher

sypher
Light Poster
29 posts since May 2005
Reputation Points: 13
Solved Threads: 0
 

thank you for your reply sypher.


ramareddy_dotne

ramareddy_dotne
Newbie Poster
15 posts since May 2005
Reputation Points: 10
Solved Threads: 0
 

I am having the same problem with a slight difference. I hope someone can help.
In my aspx page I have the following:

<script>
  sub blah()
   For intloop = 0 To (intFieldCount - 1)
    Dim oCell As New TableCell()
    strDateLink = "<input name='" & strInputName & "' type='text' value='" & dtClosureDate.ToLongDateString & "' size='33' rows='1' class='ltk' style='border:none'  />"
    oCell.Text = strDateLink
    oRow.Cells.Add(oCell)
Next
  end sub
  </script>


A you can see I am building dynamically. Let’s say that the above loops 20 times, each with a different name for the dynamic . How can I transfer these 20 values?
I have the following control in the body of the page.

<asp:Button id="btnPreCloseSumbit" OnClick="TransferFormValues" Text="Submit " runat="server"/>


Which calls

Sub TransferFormValues(Source As Object, E As EventArgs)
    Dim context As HttpContext = HttpContext.Current
    context.Items.Add("strFirstName", TextBox1.Text)
    Server.Transfer("body_date_closures_test_output.aspx", True)
 End Sub


I guess I don’t understand how to transfer the form input that has a dynamic name.

Sub Page_Load(Source As Object, E As EventArgs)
    response.Write("hello")
    Dim context As HttpContext = HttpContext.Current
    Response.Write(context.Items("strFirstName"))
    response.Write("...")
End Sub


-nbp

nbp
Newbie Poster
2 posts since May 2006
Reputation Points: 10
Solved Threads: 0
 

it's okay. i just relised that i had been going about this the wrong way. i am able to use the request.form("id") instead of redirect and request.

-np.

nbp
Newbie Poster
2 posts since May 2006
Reputation Points: 10
Solved Threads: 0
 

This article has been dead for over three months

Post: Markdown Syntax: Formatting Help
You