tags:

views:

48

answers:

1

Hi

Now we are developing the application in silverlight 3. I would like to implement the session time out in silverlight like asp.net session timeout. Please anyone give me the idea for that.

Thanks in Advance Sekar

A: 

You can use a DispatcherTimer to periodically poll the time since an activity has happened. If the time has gone over the session time, then you can take action with the UI to inform the user their session has expired.

Jeremiah Morrill