Tagged Questions
The repopulation tag has no wiki summary.
5
votes
3answers
834 views
ASP.NET MVC Form repopulation
I have a controller with two actions:
[AcceptVerbs("GET")]
public ActionResult Add()
{
PrepareViewDataForAddAction();
return View();
}
[AcceptVerbs("POST")]
public ...
1
vote
2answers
77 views
On CodeIgniter, how to repopulate a form only with correct values?
Imagine a form like this:
<form action="test.php" method="post">
<input type="text" name="firstname" value="<?=set_value('firstname')?>" />
<input type="text" ...
0
votes
0answers
59 views
Repopulate fulltext catalog radiobutton greyed out in SSMS
I have SQL Sever Management studio 2008 installed(downloaded and installed SQL Server 2008 with Advanced Services).
On one of my website, I am working on the search functionality which uses ...
0
votes
0answers
225 views
ASP.NET control does not get repopulated during postback!
I have Listview control that is populated by data from database. When I click an asp button control, I want to repopulate my Listview control. In my c# code, I change the select parameter for my ...
0
votes
3answers
79 views
How do I make these fields autopopulate from the database?
I have an array, which holds values like this:
$items_pool = Array (
[0] => Array ( [id] => 1 [quantity] => 1 )
[1] => Array ( [id] => 2 [quantity] => 1 )
[2] => Array ( [id] ...
0
votes
2answers
55 views
How do I populate these fields from existing data?
I'm not sure how to make a few parts of my form to populate from data from an array I'm passing from the database.
First is this <select> object. The key estimate_lead_id in the database holds ...