Email Server Event

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

Email Server Event

Post by mcbaker83 »

I am wanting to customize the email sent after a record is inserted. The Help shows doing this in VB.NET and I am using C#. I am trying to understand how I would convert this line from VB.NET to C#

Dim rs As OrderedDictionary = Args("Rs")

I have started with
OrderedDictionary rs= new OrderedDictionary();

But no matter how I set rs to the Args("Rs"), I always get a Runtime error when the page loads.

Any help would be appreciated.


Webmaster
User
Posts: 9430

Post by Webmaster »

The C# syntax would probably be:

OrderedDictionary rs = Args["Rs"];


Post Reply