Click here to Skip to main content
15,894,343 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Design Patteren Pin
Gamzun10-Nov-09 19:05
Gamzun10-Nov-09 19:05 
QuestionDifferent .NET Framework versions on same server Pin
Anuj Chauhan from India10-Nov-09 18:25
Anuj Chauhan from India10-Nov-09 18:25 
AnswerRe: Different .NET Framework versions on same server Pin
Christian Graus10-Nov-09 18:31
protectorChristian Graus10-Nov-09 18:31 
AnswerRe: Different .NET Framework versions on same server Pin
saurabh8april11-Nov-09 2:04
saurabh8april11-Nov-09 2:04 
Questiongridviewdisappear at postback Pin
anilaabc10-Nov-09 18:22
anilaabc10-Nov-09 18:22 
AnswerRe: gridviewdisappear at postback Pin
Christian Graus10-Nov-09 18:31
protectorChristian Graus10-Nov-09 18:31 
GeneralRe: gridviewdisappear at postback Pin
anilaabc10-Nov-09 19:17
anilaabc10-Nov-09 19:17 
QuestionProblem with BCP in C# Pin
sudhirBirlapur10-Nov-09 18:01
sudhirBirlapur10-Nov-09 18:01 
I am working on this application(asp.net 1.1,sql server 2000) that has a huge database , in the frontend there is a provision

to generate a csv file by running a stored procedure which can fetch 50000 records(approx), to acieve this I've used the

following:-
1) running forloop iterating through the dataset and creating a comma separated string, then creating the csv file, but this

process slows down the server immensely when data fetched is huge.
2) DTS packages is failing, because when I am creating a new package and click the defeine column button, the SQL Enterprise

manager just closes itself after a few seconds.
3) BCP command, sometimes works sometimes does not. The code used for running bcp in C# is :-

System.Diagnostics.Process proc = new System.Diagnostics.Process();
proc.StartInfo.FileName = "bcp";
proc.StartInfo.UseShellExecute = false;
proc.StartInfo.RedirectStandardError = true;
proc.StartInfo.RedirectStandardOutput = true;
proc.StartInfo.Arguments = @"""exec ETH11.dbo.usp_DownloadInvoiceforDalkia "" queryout ""D:\NewLookLogs\Invoice.csv"" -c -t ,

-T -S";
proc.StartInfo.Arguments = proc.StartInfo.Arguments.Replace("usp_DownloadInvoiceforDalkia ","usp_DownloadInvoiceforDalkia

"+"'"+xSupplierID+"',"+"'"+xBuyerID+"',"+"'"+xFromDate+"',"+"'"+xToDate+"',"+"'"+xType+"',"+""+xCurrentOnly+","+""+xDateType+

","+""+xStatus+","+""+xAllStatus+","+""+xContentType+","+"'invoice.csv',"+"'"+Session.SessionID+"'");
proc.Start();
proc.WaitForExit();

QuestionFailure sending mail Pin
swapnil_bhanagle10-Nov-09 17:52
swapnil_bhanagle10-Nov-09 17:52 
AnswerRe: Failure sending mail Pin
Gamzun10-Nov-09 18:00
Gamzun10-Nov-09 18:00 
GeneralRe: Failure sending mail Pin
swapnil_bhanagle10-Nov-09 22:17
swapnil_bhanagle10-Nov-09 22:17 
GeneralRe: Failure sending mail Pin
swapnil_bhanagle11-Nov-09 0:41
swapnil_bhanagle11-Nov-09 0:41 
GeneralRe: Failure sending mail Pin
Gamzun11-Nov-09 7:38
Gamzun11-Nov-09 7:38 
GeneralRe: Failure sending mail Pin
swapnil_bhanagle11-Nov-09 17:39
swapnil_bhanagle11-Nov-09 17:39 
GeneralRe: Failure sending mail Pin
Gamzun12-Nov-09 8:55
Gamzun12-Nov-09 8:55 
QuestionCreating Dynamic Hyperlink in GridView Pin
Maxdd 710-Nov-09 14:48
Maxdd 710-Nov-09 14:48 
AnswerRe: Creating Dynamic Hyperlink in GridView Pin
Kannan Ar10-Nov-09 15:32
professionalKannan Ar10-Nov-09 15:32 
GeneralRe: Creating Dynamic Hyperlink in GridView Pin
Maxdd 710-Nov-09 17:25
Maxdd 710-Nov-09 17:25 
GeneralRe: Creating Dynamic Hyperlink in GridView Pin
_Damian S_10-Nov-09 17:34
professional_Damian S_10-Nov-09 17:34 
GeneralRe: Creating Dynamic Hyperlink in GridView Pin
Maxdd 710-Nov-09 17:58
Maxdd 710-Nov-09 17:58 
GeneralRe: Creating Dynamic Hyperlink in GridView Pin
_Damian S_10-Nov-09 18:02
professional_Damian S_10-Nov-09 18:02 
GeneralRe: Creating Dynamic Hyperlink in GridView Pin
Maxdd 711-Nov-09 8:44
Maxdd 711-Nov-09 8:44 
AnswerRe: Creating Dynamic Hyperlink in GridView Pin
Amit Patel198510-Nov-09 18:22
Amit Patel198510-Nov-09 18:22 
QuestionContextual help in ASP.Net Pin
crazylad10-Nov-09 13:28
crazylad10-Nov-09 13:28 
AnswerRe: Contextual help in ASP.Net Pin
_Damian S_10-Nov-09 13:46
professional_Damian S_10-Nov-09 13:46 

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.