Click here to Skip to main content
15,917,702 members
Home / Discussions / C#
   

C#

 
GeneralRe: Word To PDF Conversion using C#.NET Pin
Christian Graus3-Jan-08 23:37
protectorChristian Graus3-Jan-08 23:37 
GeneralRe: Word To PDF Conversion using C#.NET Pin
Vasudevan Deepak Kumar4-Jan-08 0:07
Vasudevan Deepak Kumar4-Jan-08 0:07 
GeneralRe: Word To PDF Conversion using C#.NET Pin
Pete O'Hanlon4-Jan-08 9:54
mvePete O'Hanlon4-Jan-08 9:54 
GeneralRe: Word To PDF Conversion using C#.NET Pin
Justin Perez4-Jan-08 3:42
Justin Perez4-Jan-08 3:42 
GeneralRe: Word To PDF Conversion using C#.NET Pin
ChrisKo4-Jan-08 5:51
ChrisKo4-Jan-08 5:51 
AnswerRe: Word To PDF Conversion using C#.NET [modified] Pin
murari_amar3-Sep-08 2:41
murari_amar3-Sep-08 2:41 
Generalsetting session as string Pin
eyeseetee3-Jan-08 22:18
eyeseetee3-Jan-08 22:18 
GeneralRe: setting session as string Pin
Pete O'Hanlon3-Jan-08 22:31
mvePete O'Hanlon3-Jan-08 22:31 
Two thoughts.

1. Is db1 populated at this point? If it's null then the Session will still be empty.
2. Are you running a multi-core machine? If so, you can run into problems with state management if your state service is running "in process". To get round this, you need to run your session manager as either a Sql state service or ASP State Service.

Assuming that you want to run as the ASP.NET state service, if you look in your Services, you will see one of the services is called ASP.NET State Service. This needs to be running, and you must set your config file to run the sessionState as StateServer. Typically this would look something like
<sessionState mode="StateServer" 
	stateConnectionString="tcpip=dataserver:42424" 
        cookieless="false"
        timeout="20"/>



Deja View - the feeling that you've seen this post before.

My blog | My articles



GeneralRe: setting session as string Pin
eyeseetee4-Jan-08 0:22
eyeseetee4-Jan-08 0:22 
GeneralRe: setting session as string Pin
Guffa4-Jan-08 1:41
Guffa4-Jan-08 1:41 
GeneralRe: setting session as string Pin
eyeseetee4-Jan-08 5:16
eyeseetee4-Jan-08 5:16 
QuestionNeed help with Regex Pin
Ni Na3-Jan-08 22:04
Ni Na3-Jan-08 22:04 
GeneralRe: Need help with Regex Pin
originSH3-Jan-08 23:59
originSH3-Jan-08 23:59 
GeneralRe: Need help with Regex Pin
Ni Na4-Jan-08 0:29
Ni Na4-Jan-08 0:29 
GeneralRe: Need help with Regex Pin
TJoe4-Jan-08 3:44
TJoe4-Jan-08 3:44 
GeneralRe: Need help with Regex Pin
Ni Na6-Jan-08 20:52
Ni Na6-Jan-08 20:52 
QuestionProblem With sorting of array [modified] Pin
sindhutiwari3-Jan-08 20:57
sindhutiwari3-Jan-08 20:57 
QuestionRe: Problem With sorting of array Pin
Vikram A Punathambekar3-Jan-08 21:26
Vikram A Punathambekar3-Jan-08 21:26 
GeneralRe: Problem With sorting of array Pin
sindhutiwari3-Jan-08 22:01
sindhutiwari3-Jan-08 22:01 
GeneralRe: Problem With sorting of array Pin
Pete O'Hanlon3-Jan-08 22:33
mvePete O'Hanlon3-Jan-08 22:33 
GeneralRe: Problem With sorting of array Pin
sindhutiwari3-Jan-08 22:55
sindhutiwari3-Jan-08 22:55 
GeneralRe: Problem With sorting of array Pin
Pete O'Hanlon3-Jan-08 23:26
mvePete O'Hanlon3-Jan-08 23:26 
GeneralRe: Problem With sorting of array Pin
sindhutiwari3-Jan-08 23:31
sindhutiwari3-Jan-08 23:31 
GeneralRe: Problem With sorting of array Pin
Pete O'Hanlon4-Jan-08 0:01
mvePete O'Hanlon4-Jan-08 0:01 
GeneralProblem in a windows application Pin
Member 30578873-Jan-08 20:27
Member 30578873-Jan-08 20:27 

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.