Hi
I am tring to store session variables in sql server
for that i have made following cjanges:
in web.config:
and run InstallSQlstate.sql from this folder
C:\WINNT\Microsoft.NET\Framework\v1.0.3705

i have witten following code for this
private void Button1_Click(object sender, System.EventArgs e)
{
Session["Se"]= TextBox1.Text;
Response.Write(Session["Se"].ToString());

}


Now I am not able to store my session data is sql Server.
can anybody know..anything more to do to get session data.

thanks in advance.

PPCC