Store value from a repeater control in a session variable - ASP.NET?

Lionel Cyril

New member
HI i have successfully created a connection string
and the rest of the commands are as follows

Dim cmd As New SqlCommand(sql, SQLConn)
cmd.Connection.Open()
Repeater1.DataSource = cmd.ExecuteReader()
Repeater1.DataBind()
cmd.Connection.Close()
The above code works fine..
My doubt is that how to i get to store all column values returned by a Repeater in a session variable....
 
Back
Top