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
https://forums.phpfreaks.com/topic/259615-post-in-php-and-aspnet/
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.

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.