This topic is locked

How to add a bulletin field to the main menu page

8/5/2009 1:32:38 PM
ASPRunnerPro General questions
G
guntherg author

Does anyone know how I may add a field to my main menu page which will be used to display a general test message to all users after login. I would like that field to display a text value from a field in the database called message in a table called Info. I also want to make it non-editable by the users. Thanks.

J
Jane 8/7/2009

Gene,
use custom event (Insert ASP code snippet option on the Visual Editor tab) for this purpose.

Here is a sample:

Set rstmp = dal.message.QueryAll()

Response.write rstmp("Info")

rstmp.close

set rstmp=nothing