|
-
Feb 20th, 2006, 03:55 AM
#1
Thread Starter
Hyperactive Member
Session state using SQLSERVER
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
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|