Page_Render

This public forum is for user-to-user discussions of ASP.NET Maker. Note that this is not support forum.
Post Reply
rodrigofaustino2
User
Posts: 28

Page_Render

Post by rodrigofaustino2 »

event triggered when the page is rendered
need a help in PHPMaker I can do an update on a column when the User enters the page, so I know who the User this by editing the registry but as I am moving to vb.net how to change this update running on PHPMaker ?

$update="UPDATE ocr set Edit=2,EdRac='" . ew_AdjustSql(CurrentUserName()) . "' WHERE idOcr='".$GLOBALS["idx"]."';";
$resultSet = $conn->execute($update);


Webmaster
User
Posts: 9427

Post by Webmaster »

rodrigofaustino2 wrote:
I am moving to vb.net

We recommend C#, read: http://www.hkvforums.com/viewtopic.php?f=7&t=37678.

e.g.

var result = ew_Execute("Update ..." + ew_AdjustSql(CurrentUserName()) + "..."); // C#


Post Reply