Hello all,
I am a new programmer in C#. It is nice to meet you.
My Senior Developer told me I could add '2' parameters to a 'configuration' element in the Web.config file.
The code is this
The error is this
How can I add both to the configuration element?
xmlns="http://www.nlog-project.org/schemas/NLog.xsd" AND xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance to the 'configuration element' like it is written above?
I tried this
Neither of these worked.
Thank you for any suggestions.
I am a new programmer in C#. It is nice to meet you.
My Senior Developer told me I could add '2' parameters to a 'configuration' element in the Web.config file.
The code is this
The error is this
How can I add both to the configuration element?
xmlns="http://www.nlog-project.org/schemas/NLog.xsd" AND xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance to the 'configuration element' like it is written above?
I tried this
I added a comma between the parameters.:
<configuration xmlns="http://www.nlog-project.org/schemas/NLog.xsd", xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
I tried the configuration element on two lines:
<configuration xmlns="http://www.nlog-project.org/schemas/NLog.xsd">
<configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
Neither of these worked.
Thank you for any suggestions.