hello,
is it possible to sign out from the website programmatically.. if possible means how can i?

thanks in advance

Recommended Answers

All 6 Replies

yes, it is possible. use like below.
session.abandon();
this will clear all the session values. so, you should use after this
Response.redirect("Home.aspx");

----------------
session.abandon();
Response.redirect("Home.aspx");


any problem ask me.

You can Sign out programatically using Session.Abandon() Method.

To know more about Sessions click here

hello,

im using webbrowser control to login programmatically to a website.. it works fine.. and my Question now is is it possible to programmatically log out from that website.

if we press login button in our windows form means it gets login to that website and we can see it in webbrowser
also if i press logout button in my windows form it should log out from that website as we click the signout button of that website.

is it possible?
if possible means how can i do that?

Expecting Help!

thanks.

You can follow the log out link usually and then wait for the response page to return, but be aware of redirects to authentication servers that will have to be followed before you destroy the object, Siteminder comes to mind in this.

>Is it possible to programmatically log out from a website

When you close that win app or unload that form which hosts webbrowser control, you will be logged out.

PS:
Please do not flood the forum by posting the same question more than once.

SORRY, i just forget that i ve started a thread already.

i will take care not this mistake to happen again

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.