Jump to content

Post in PHP and ASP.net


bleustreak12

Recommended Posts

0 down vote favorite

share [g+] share [fb] share [tw]

 

 

In my html I have

<input type="hidden" name="Code_value" value="xyz">
<input type="hidden" name="Code_value" value="abc">
<input type="hidden" name="Code_value" value="rst">

 

when i submit I take it in my ASp.net code I take them as

string Items = Request.Form["Code_value"]; 

the value of Items is xyzabcrst

 

in PHP

$Items=$_POST['Code_value'];

 

The value of items is rst

 

It takes the last value in php is it because there are multiple Code_value items if so why is it not taking just the last value in Asp.net

 

Link to comment
Share on other sites

Because ASP.NET does things differently than PHP, of course.

 

If you cannot modify the form then you'll have to parse the query string or form data yourself. That's not fun.

If you can then change the name to Code_value[] and $_POST["Code_value"] will be an array.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.