Click here to Skip to main content
15,920,438 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionTimeout expired. The timeout period elapsed prior to obtaining a connection from the pool. This may have occurred because all pooled connections were in use and max pool size was reached. Pin
AndersgRex27-Oct-08 6:40
AndersgRex27-Oct-08 6:40 
AnswerRe: Timeout expired. The timeout period elapsed prior to obtaining a connection from the pool. This may have occurred because all pooled connections were in use and max pool size was reached. Pin
Rutvik Dave27-Oct-08 6:53
professionalRutvik Dave27-Oct-08 6:53 
AnswerRe: Timeout expired. The timeout period elapsed prior to obtaining a connection from the pool. This may have occurred because all pooled connections were in use and max pool size was reached. Pin
AndersgRex27-Oct-08 8:31
AndersgRex27-Oct-08 8:31 
GeneralRe: Timeout expired. The timeout period elapsed prior to obtaining a connection from the pool. This may have occurred because all pooled connections were in use and max pool size was reached. Pin
Ashfield27-Oct-08 9:48
Ashfield27-Oct-08 9:48 
QuestionGridView, DetailView and Creating a New Row Pin
Pravinc198427-Oct-08 6:31
Pravinc198427-Oct-08 6:31 
QuestionAJAX update panel Pin
geletaabate27-Oct-08 6:27
geletaabate27-Oct-08 6:27 
Questionvb.net and parsing xml string Pin
KingAndyb27-Oct-08 3:57
KingAndyb27-Oct-08 3:57 
QuestionNEED HELP: Runing proces using the process.start() Pin
sSupergirl27-Oct-08 2:04
sSupergirl27-Oct-08 2:04 
I'm using this code to run process:
"...
_apppath = String.Concat(_apppath, "zvprtcfg_win32");
string _command = " Zan Image Printer(fax) print.html = ";
_command += strHtmlFileName;
try
{
Process _proc = new Process();
_proc.StartInfo.Arguments = _command;
_proc.StartInfo.FileName = _apppath;
if (_proc.Start())
{
int _i = 0;
do
{
_proc.WaitForExit(1000);
if (_proc.HasExited)
{
_bOk = true;
break;
}
} while (_proc.Responding && _i++ < 30);
if (!_bOk)
{
_proc.Kill();
}
}
}
catch (Exception eproc){}
..."
This works fine with my XP machine with IIS V5.1, but I can't make this work with Server 2003 and IIS V6.0.
In Server 2003, the process shows in the task manager, but it doesn't execute as I'm expecting.
ASPNET user run "zvprtcfg_win32" process on my machine and NETWORK SERVICE user run it on Server 2003.

Please give me some advice, solution...
Thanks in advance.

"...And then she'd say, it's Ok, I got lost on the way
but I'm a supergirl, and supergirls don't cry. ..." Reamonn

AnswerRe: NEED HELP: Runing proces using the process.start() Pin
SeMartens27-Oct-08 2:30
SeMartens27-Oct-08 2:30 
GeneralRe: NEED HELP: Runing proces using the process.start() Pin
sSupergirl27-Oct-08 5:54
sSupergirl27-Oct-08 5:54 
QuestionQuery String Pin
srinivaskonijeti27-Oct-08 2:00
srinivaskonijeti27-Oct-08 2:00 
AnswerRe: Query String Pin
Kannan Ar27-Oct-08 3:44
professionalKannan Ar27-Oct-08 3:44 
GeneralRe: Query String Pin
Ridge Howison27-Oct-08 11:30
Ridge Howison27-Oct-08 11:30 
QuestionGetting dataitems from a LinqDatasource/ListView in code Pin
AntoonHzn27-Oct-08 1:36
AntoonHzn27-Oct-08 1:36 
QuestionHow this is to be done Pin
Krazy Programmer27-Oct-08 1:19
Krazy Programmer27-Oct-08 1:19 
QuestionPls Help Me..CommandName value not accessible inside ItemCommand Handler event.. Pin
Sameer-The Performer27-Oct-08 1:05
Sameer-The Performer27-Oct-08 1:05 
AnswerRe: Pls Help Me..CommandName value not accessible inside ItemCommand Handler event.. Pin
Kannan Ar27-Oct-08 3:47
professionalKannan Ar27-Oct-08 3:47 
QuestionRe: Pls Help Me..CommandName value not accessible inside ItemCommand Handler event.. Pin
Sameer-The Performer28-Oct-08 18:53
Sameer-The Performer28-Oct-08 18:53 
QuestionFlash Video Component And Spyware Control for Uploaded Contents Pin
Sosyopat26-Oct-08 23:38
Sosyopat26-Oct-08 23:38 
AnswerRe: Flash Video Component And Spyware Control for Uploaded Contents Pin
Kannan Ar27-Oct-08 1:02
professionalKannan Ar27-Oct-08 1:02 
GeneralRe: Flash Video Component And Spyware Control for Uploaded Contents Pin
Sosyopat27-Oct-08 1:49
Sosyopat27-Oct-08 1:49 
Questioniis 5.1 give error for asp.net 3.5 applicatoin Pin
mr_muskurahat26-Oct-08 23:25
mr_muskurahat26-Oct-08 23:25 
AnswerRe: iis 5.1 give error for asp.net 3.5 applicatoin Pin
Guffa27-Oct-08 0:53
Guffa27-Oct-08 0:53 
GeneralRe: iis 5.1 give error for asp.net 3.5 applicatoin Pin
mr_muskurahat27-Oct-08 1:09
mr_muskurahat27-Oct-08 1:09 
QuestionCursor Wait Pin
omlac26-Oct-08 22:50
omlac26-Oct-08 22:50 

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.