I have a lot of tables. Each table has an incremental int ID and a company guid id. I made an with the company guid as id param. Like this:
@Html.(@item.Bedrijfsnaam.ToString(), "Edit", "BedrijfsGegevens", new { id = (Guid)item.Bedrijfsnummer }, null)
When I click on this I want to fill a readonly textboxfor on a different view from a different model with this guid.
The guid is passed properly but then.......what to do?
Thanks in advance.
Cheers