1
Answer

ASP.NET 2010 web.config setting

Photo of Sie Ste

Sie Ste

13y
1.5k
1
I am in the processing of trying to run a C # asp.net 2010 web application from my workstation so I can understand it and add my own webpages to the application. However to get this application to run, I am trying to determine what the following values should be in the web.config file:
<appSettings>
<add key="ReportViewerServerConnection" value="" />
<add key="ReportViewerUser" value="" />
<add key="ReportViewerPassword" value="" />
<add key="ReportViewerDomain" value="" />
<add key="ReportServerUrl" value="" />
<add key="ReportsPath" value="" />
</appSettings>

Let me know if the following settings are correct and/or what would you recommend?
<add key="ReportViewerUser" value=general company name? />
<add key="ReportViewerPassword" value=general company value />
<add key="ReportViewerDomain" value=general company domain or report server doamian?/>
<add key="ReportServerUrl" value="http://localhost/reportserver" />
<add key="ReportsPath" value="" /> where would this reports path be on my local workstation?

NOTE: I have C#.net 2008 desktop experience, but this is the first time I am working on anasp.net 2010 application.

Answers (1)

0
Photo of John Wood
NA 64 0 14y
My best suggestion is not to use the Utils namespace name.  Through my VB and C# interaction, i have noticed others having similar problems with that name.  I am thinking it is a internal reserved word or something.  Try renaming the namespace to utility or something that is descriptive to what it is doing like "TestSignature.Helpers".
0
Photo of sfsdf
NA 2 0 15y
I got the same trouble,I've not created any subspace utils, waht would I solve this problem?
0
Photo of John Wood
NA 64 0 15y
I assume Utils is a subnamespace you have created?