![]() |
fhumanes 12/5/2023 |
I'm sorry, I don't know asp and I can't write the code. https://fhumanes.com/blog/guias-desarrollo/guia-14-phprunner-utilizar-varias-paginas-de-print/ I think what you need is in this example. JavaScript is the same for the 2 languages. Greetings, |
T
|
Tim 12/5/2023 |
I'm not sure if this is your situation, but I had problems accessing the ID field of newly created records when the ASPRunner query was using a DB view instead of a table. I opened a ticket with support and this is the response I got: >>>>>>>> this happens because your database doesn't report the ID field in the view to be autoincremented. ASPRunner relies on this database provided info to decide if it should to read the newly added ID field value or not. You can fix it updating this info manually with custom code. |
S
|
SaulHulse author 12/5/2023 |
Hi, Guys. Is very similar to PHPrunner. in the After record added event you need to write this MVCFunctions.HeaderRedirect("TableName", "print", "selection[]=" + values["ID"].ToString()); It work like charm. :D I will mark it as solve it |