Click here to Skip to main content
15,912,292 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
GeneralRe: Win32 Debug API Pin
Ilya Verbitskiy5-Jun-07 4:28
Ilya Verbitskiy5-Jun-07 4:28 
QuestionIIS6 with .NET Framework 1.1 and 2.0 at the same time?? can i do that? Pin
Leistath3-Jun-07 4:16
Leistath3-Jun-07 4:16 
AnswerRe: IIS6 with .NET Framework 1.1 and 2.0 at the same time?? can i do that? Pin
Stefan Prodan3-Jun-07 4:39
Stefan Prodan3-Jun-07 4:39 
GeneralRe: IIS6 with .NET Framework 1.1 and 2.0 at the same time?? can i do that? Pin
Leistath6-Jun-07 12:49
Leistath6-Jun-07 12:49 
AnswerRe: IIS6 with .NET Framework 1.1 and 2.0 at the same time?? can i do that? Pin
Mike Dimmick6-Jun-07 12:39
Mike Dimmick6-Jun-07 12:39 
GeneralRe: IIS6 with .NET Framework 1.1 and 2.0 at the same time?? can i do that? Pin
Leistath6-Jun-07 12:53
Leistath6-Jun-07 12:53 
GeneralRe: IIS6 with .NET Framework 1.1 and 2.0 at the same time?? can i do that? Pin
Mike Dimmick7-Jun-07 3:12
Mike Dimmick7-Jun-07 3:12 
QuestionMake MarshalByRefObject thread-safe Pin
Stefan Prodan3-Jun-07 1:42
Stefan Prodan3-Jun-07 1:42 
Questionproblem in implementing sql server connection in windows service Pin
sid22-12-Jun-07 6:24
sid22-12-Jun-07 6:24 
AnswerRe: problem in implementing sql server connection in windows service Pin
Stefan Prodan3-Jun-07 1:41
Stefan Prodan3-Jun-07 1:41 
AnswerRe: problem in implementing sql server connection in windows service Pin
Dave Kreskowiak3-Jun-07 4:50
mveDave Kreskowiak3-Jun-07 4:50 
QuestionHow do I integrate CR XI with VS.NET 2003 ? Pin
Jeneesh K. Velayudhan1-Jun-07 19:52
Jeneesh K. Velayudhan1-Jun-07 19:52 
QuestionWhat is NUnit? Pin
rangaSL31-May-07 22:41
rangaSL31-May-07 22:41 
AnswerRe: What is NUnit? Pin
Colin Angus Mackay1-Jun-07 0:45
Colin Angus Mackay1-Jun-07 0:45 
GeneralRe: What is NUnit? Pin
Kevin McFarlane4-Jun-07 9:14
Kevin McFarlane4-Jun-07 9:14 
AnswerRe: What is NUnit? Pin
Christian Graus1-Jun-07 0:55
protectorChristian Graus1-Jun-07 0:55 
GeneralRe: What is NUnit? Pin
Paul Conrad1-Jun-07 7:13
professionalPaul Conrad1-Jun-07 7:13 
AnswerRe: What is NUnit? Pin
PavanPareta17-Jun-07 21:07
PavanPareta17-Jun-07 21:07 
Questiondiff b/w object and Object Pin
Nilesh Mitra31-May-07 18:35
Nilesh Mitra31-May-07 18:35 
AnswerRe: diff b/w object and Object Pin
Sathesh Sakthivel31-May-07 18:57
Sathesh Sakthivel31-May-07 18:57 
GeneralRe: diff b/w object and Object Pin
Colin Angus Mackay31-May-07 22:36
Colin Angus Mackay31-May-07 22:36 
AnswerRe: diff b/w object and Object Pin
Colin Angus Mackay31-May-07 22:35
Colin Angus Mackay31-May-07 22:35 
AnswerRe: diff b/w object and Object Pin
DavidNohejl5-Jun-07 1:51
DavidNohejl5-Jun-07 1:51 
QuestionConfig File [modified] Pin
papy-boom30-May-07 23:49
papy-boom30-May-07 23:49 
hi,
i've created a console application and i've tried to read some informations in the app.config file
so i've create with VS.NET the app.config file and i've added some tags so it would look like this
<configuration>
<appsettings>
<add key="Ship" value="DocStyle">

<documentconfig>
<configpath>DocumentConfig.config
<documentconfig>

i've tried to read the DocumentConfig section using this code

object config=null;
string Setting = "DocumentConfig";

try
{

config = ConfigurationSettings.GetConfig(Setting);
}
catch(Exception err){
Console.Write(err.Message);

}
but i've alawys got an exception msg "unrecognized configuration Section DocumentConfig "
in fact the use of this section (<documentconfig>) is creating a problem by removing it everthing is OK.
so how can i do to use this section

thanks for help



-- modified at 8:09 Thursday 31st May, 2007
AnswerRe: Config File Pin
kubben31-May-07 5:19
kubben31-May-07 5:19 

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.