ew_Write does not work in Row_inserted (v10, VB)

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

ew_Write does not work in Row_inserted (v10, VB)

Post by snookie »

Hi,
I am working with ASP.Netmaker V10, using VB code.

My ew_write function does not work in the Server table specific functions (but it does work in the Server Global functions).
In the example below, the Row_Inserted event has been fired, because "test2" is displayed in the browser, unfortunately "test1" is NOT displayed.
What is wrong? Compile and debug have been activated as well via Tools->Advanced settings.

EXAMPLE:

' Row Inserted event
Public Sub Row_Inserted(rsold As OrderedDictionary, rsnew As OrderedDictionary)
ew_Write("test1")
HttpContext.Current.response.write("test2")
HttpContext.Current.response.end()
End Sub

OUTPUT:

test2

Regards, Snookie


motfs
User
Posts: 258

Post by motfs »

Try ew_Response.Write().


snookie
User
Posts: 34

Post by snookie »

ok thanks, this works.


Post Reply