Click here to Skip to main content
15,917,702 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Windows .net(C#) Pin
PandemoniumPasha19-Feb-07 21:00
PandemoniumPasha19-Feb-07 21:00 
Questionbarcode on crystal report Pin
Laxmikant Lad19-Feb-07 17:49
Laxmikant Lad19-Feb-07 17:49 
Questionhow to use Filter on Dataview string like te*xt% Pin
BalasahebK19-Feb-07 17:30
BalasahebK19-Feb-07 17:30 
AnswerRe: how to use Filter on Dataview string like te*xt% Pin
Sylvester george19-Feb-07 19:52
Sylvester george19-Feb-07 19:52 
GeneralRe: how to use Filter on Dataview string like te*xt% Pin
BalasahebK19-Feb-07 20:31
BalasahebK19-Feb-07 20:31 
GeneralRe: how to use Filter on Dataview string like te*xt% Pin
Sylvester george19-Feb-07 20:54
Sylvester george19-Feb-07 20:54 
GeneralRe: how to use Filter on Dataview string like te*xt% Pin
BalasahebK19-Feb-07 21:50
BalasahebK19-Feb-07 21:50 
GeneralRe: how to use Filter on Dataview string like te*xt% Pin
Sylvester george19-Feb-07 21:57
Sylvester george19-Feb-07 21:57 
GeneralRe: how to use Filter on Dataview string like te*xt% Pin
BalasahebK19-Feb-07 23:20
BalasahebK19-Feb-07 23:20 
GeneralRe: how to use Filter on Dataview string like te*xt% Pin
Sylvester george20-Feb-07 2:12
Sylvester george20-Feb-07 2:12 
QuestionXML -2033 Bytes Pin
Amit Kumar G19-Feb-07 11:09
Amit Kumar G19-Feb-07 11:09 
Questionbutton not causing postback on click??? Pin
bradz1519-Feb-07 10:55
bradz1519-Feb-07 10:55 
AnswerRe: button not causing postback on click??? Pin
Vsree19-Feb-07 17:49
Vsree19-Feb-07 17:49 
GeneralRe: button not causing postback on click??? Pin
bradz1520-Feb-07 5:44
bradz1520-Feb-07 5:44 
AnswerRe: button not causing postback on click??? Pin
Sandeep Akhare19-Feb-07 19:05
Sandeep Akhare19-Feb-07 19:05 
GeneralRe: button not causing postback on click??? Pin
bradz1520-Feb-07 5:44
bradz1520-Feb-07 5:44 
AnswerRe: button not causing postback on click??? Pin
sathesh pandian19-Feb-07 22:39
sathesh pandian19-Feb-07 22:39 
GeneralRe: button not causing postback on click??? Pin
bradz1520-Feb-07 5:44
bradz1520-Feb-07 5:44 
AnswerRe: button not causing postback on click??? Pin
Sandeep Akhare27-Feb-07 1:56
Sandeep Akhare27-Feb-07 1:56 
QuestionWebservice namespace Pin
itemplate19-Feb-07 9:52
itemplate19-Feb-07 9:52 
QuestionWebservice schemalocation [modified] Pin
itemplate19-Feb-07 9:51
itemplate19-Feb-07 9:51 
Questionhow to session variable Pin
rao raja19-Feb-07 8:11
rao raja19-Feb-07 8:11 
AnswerRe: how to session variable Pin
Marcus J. Smith19-Feb-07 8:43
professionalMarcus J. Smith19-Feb-07 8:43 
Session variables allow you to store information between post backs. The web is stateless, meaning that it doesnt know what it sent you what you are doing or anything between server hits, so to maintain this you can use session variables/cookies/etc...

The session variables can be set simply by coding Session("VariableName") = Value and then can be retrieved by coding Value = Session("VariableName").

The session is maintained by a SessionID that is created at the first request and is stored as a session cookie in the user's browser in most cases.


Cleako

AnswerRe: how to session variable Pin
Neeraj Arora19-Feb-07 17:25
Neeraj Arora19-Feb-07 17:25 
QuestionImages Pin
Amit Kumar G19-Feb-07 7:40
Amit Kumar G19-Feb-07 7:40 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.