Tagged Questions
0
votes
0answers
29 views
split 2 web.config to avoid restart an application
I have the next two web.config in two projects, I want to create a external one which references to these two. How can I do it?. I wanted to do this to avoid to restart the application everytime I ...
0
votes
1answer
50 views
IIS 7.0 - URL Rewriting Root Folder
I have done a bunch of sites using URL Rewrite actions in the web.config with much success.
Today I am trying to do the following rewrite rule:
Example url: domainname.com/ANYTHINGHERE/PRODUCTID
I ...
0
votes
0answers
60 views
Getting Timeout expired error in VB.NET on remote server without accessing database
Hi everyone I am getting an error :
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 ...
2
votes
1answer
155 views
Ajax htmlEditorExtender - Unrecognized element sanitizer
Hi I've downloaded the latest version of the Ajax Toolkit from Microsoft and I'm trying to setup the sanitizer for the htmlEditorExtender, but I keep getting the following error when trying to build ...
0
votes
1answer
75 views
asp.net/vb.nrt select local web.config file only
I am deploying an asp.net solution written in vb.net, the solution works fine on the localhost server and on my development server. On the live server the solution keeps ignoring the local web.config ...
0
votes
0answers
38 views
ApplicationSettings in Virtual Path provider loaded site
Currently working with VirtualPathProvider class to load a whole website from the database just like the one in here, also did the same thing to the applicationsettings of the web.config and moved ...
0
votes
1answer
175 views
Unable to execute ConnectionString in MS visual Studio 2010
I've been stuck with this for the past week and would be very glad if you guys could help.
I'm working on vb with MS visual studio 2010. I currently have a database under a asp.net folder named ...
0
votes
0answers
59 views
Custom Configuration Handler Exception
I am trying to create a custom configuration section in the web.config using the information on the following webpage: http://msdn.microsoft.com/en-gb/library/ms228056.aspx
Here is the code:
...
0
votes
0answers
36 views
Read Web Config return nothing
I has a 2 Web project in one solution. I want read a appsettings from web.config file but it return nothing.
Below is appsettings in web.config file
<add key="DBType" value="MYSQL"/>
...
0
votes
1answer
245 views
404 error when uploading large files (4mb+) - asp.net
I have wasted essentially my entire day working on this. It seems that large uploads worked previously, but now they don't even though I have all the settings I should need in my web config. Every ...
4
votes
1answer
278 views
URL Routing, Image Handler & “A potentially dangerous Request.Path value”
I've been experiencing this problem now for quite sometime and have decided to try and get to the bottom of it once and for all by posting the question here for some thought. I have an image handler ...
0
votes
1answer
190 views
SQL Query web.config file
I know how to set permissions for certain pages using the built in feature ASP.net has for creating users and setting authorisation in the web.config file. The problem I am having at the moment is ...
0
votes
3answers
839 views
Moving ASP.Net System.Net.Mail settings to Web.config
We are using this coding to send email from an ASP.Net code-behind Vb.Net file.
Can any of this coding be placed inside the Web.config file?
Protected Sub EmailStudentList()
' Get the rendered ...
0
votes
5answers
210 views
How to retrieve custom settings from web.config
I have a web.config with some Custom Settings in it(not in appsettings) which look like this:
<ldapSettings>
<add key="server" value="xxxxxx"/>
<add key="portNumber" ...
1
vote
1answer
54 views
“location” based Authorization
I have a VS 2008 web application running on IIS 6. In the web.Config wile there is a section like this:
<location path="public">
<system.web>
<authorization>
...
0
votes
1answer
510 views
Dynamic Web Service application in VB
The problem that I am running into is that I can not get my application to dynamically access a seperate applications webservice when using different enviornments. I understand I need to make the url ...
0
votes
0answers
203 views
MSDataShape SQL Provider connection string in ASP.net web.config file
My application requires the use of the MSDataShape SQL Provider and I want to store the connection string in my web.config file.
My DataShape connection string works when I hardcode the connection ...
0
votes
0answers
249 views
Type 'Exception' is not defined
I got this weird error when I build my application "Type 'Exception' is not defined" and other similar errors. I've checked my web config and it is there.
<system.web>
<pages>
...
0
votes
0answers
85 views
asp.net configuration - Security - Manage Access Roles
I am having problems after I publish my project and upload it to my webserver. All the access roles are gone and anyone can access any of the pages that are suppose to be restricted to the users login ...
4
votes
1answer
1k views
How to read a connectionstring in .net 4.5
How do I read a value from the web.config file for a connectionstring in the 4.5 .net framework?
I'm using system.configuration which I have a reference to and a using statement, but the only thing ...
0
votes
0answers
77 views
Accessing specific tag in web.config file
I recently started working on an application that was built by several people in the past. I am having problems creating a SQLConnection in VB. My code so far is as follows:
<WebMethod()> _
...
2
votes
1answer
350 views
Encrypting web.config sections
In a .NET 4.0 website, which web.config sections can be encrypted?
I read that not all sections can be encrypted, but I can't find anything detailing which sections can.
0
votes
0answers
91 views
Handlers in web.config so all requests handled by default.aspx page
Please forgive my ignorance in not getting all the jargon correct.
I have created an application in vb.net (sorry its what i have learned) the will create a url the takes the info after the domain ...
0
votes
3answers
234 views
.NET ConfigurationSettings.AppSettings(“TheDB”)
I'm looking at a custom built .NET control (vb). It has a public string declared as:
Public Shared strConn As String = ConfigurationSettings.AppSettings("TheDB")
I'm trying to find out what "TheDB" ...
0
votes
0answers
100 views
vb.net windows app - how to read database name from another web.config file?
I have a windows application & need to read the database name from an external web.config file located in c:\test\web.config
Here is an example of my connection settings in my web.config file
...
0
votes
1answer
298 views
Unable to read configuration section 'System.web' because it lacks a statement of the Chamber
my web.config is
<?xml version="1.0"?>
<configuration>
<configSections>
<sectionGroup name="system.web.extensions" ...
0
votes
0answers
206 views
How do I comment out existing database connections & then create a new database connection in the web.config using vb.net?
Basically I have a web.config file that has several database connections in it in both the "connectionStrings" & "appSettings" sections. See example below.
<connectionStrings>
<!-- ...
0
votes
1answer
443 views
Response.Cookies when sessionState mode=“InProc”
I am wondering what the below code is doing? When sessionState Mode is "InProc" or is it correct?
Response.Cookies(My.Settings.TESTSessionCookieName).Expires = DateTime.Now.AddYears(-1)
Why the ...
0
votes
1answer
380 views
My returnURL is not working in production
I am using RedirectFromLoginPage in my vb.net web app(.net 4). It works fine in my dev environment, but fails in my production environment.
When I login through dev, I get this URL:
...
0
votes
1answer
109 views
Determine if default.aspx is in the address bar
In my web config file I have the home page set to
<location path="Default.aspx">
<system.web>
<httpRuntime requestValidationMode="2.0" />
</system.web>
...
1
vote
2answers
380 views
ASP.NET and VB.NET config files
I am trying to share a DLL between an ASP.NET application and a VB.NET (Forms) application. The client application uses a configuration file to store settings e.g. connection strings and so does the ...
0
votes
0answers
121 views
VB.Net Web Site namespace inheritance thru child web.config
I have a VB.NET Web Site (Not a Web Application) that has a few projects each of which are placed in a separate sub folder. The project I am working on (~/PA_Surveys/) has many .ASPX files (about 100 ...
0
votes
1answer
71 views
Web.Config Issues and Analyzers
I have a set of ASP.NET membership tables online with my hosting with godaddy. I can run my site locally and connect to the online membership table fine and can create accounts etc.. So basically I ...
0
votes
2answers
186 views
Why is my VS 2011 ASP.NET Project Giving a 401.2 Error When Debugging with IIS Express 7.5?
Everything was working just fine...then one time running the debugger and I'm given a 401.2 error from IIS Express 7.5. I created a new project and tested - worked fine. I ensured the web.config and ...
0
votes
1answer
140 views
App_Code modules ignore machine.config namespaces
I have a legacy ASP.NET/VB.NET WebSite. There several App_Code modules/code files that use types from common namespaces (such as the "System", etc.) included in the machine.config file.
For some ...
-3
votes
1answer
658 views
VB.NET/ASP.NET 4.0 custom configuration section: “An error occurred creating the configuration section handler”
I am creating a custom config section that will allow me to manage what ELMAH exceptions I want to ignore from my VB.NET/ASP.NET app. Here's my code. I made it easy to paste in a blank code file if ...
-1
votes
1answer
1k views
How to give permission in web.config file for users,admin,others?
I am getting confused to give permission for user's ,admin and others in web.config.
this is my web.config
<authorization>
<deny users="*"/>
<allow users ="neerajjadon" ...
0
votes
2answers
139 views
ASP.net web server not logging on
I have inherited a ASP.net site, and I've made some changes too to some of the VB code and CSS, and have hosted it on a FTP. It uses an SQL DB to allow users to log in and calls stored procedures.
...
1
vote
4answers
149 views
How can i write a user's input from a text box to the web.config file in asp.net / html?
I am trying to obtain a file path that users manually enter on a web page, and then write it to the web.config file.
1
vote
3answers
813 views
How to read a value from an application's app.config file from a asp.net web page?
Basically i have a .net application that has a directory path stored in the app.config file. this directory path outputs xml files that will be read by an asp.net web page.
Is there any way i can get ...
8
votes
1answer
6k views
Element 'system.webServer' has invalid child element 'rewrite'. Should I fix this, and how?
I have a number of rewrite rules for a lot of things that I did in IIS7, like removing trailing slashes, canonnical URLs, lowercase lettering, and such. IIS altered my web.config, and everything ...
1
vote
2answers
7k views
Setting Trust Level in web.config
I can't send email via ASP.NET and sent an email to my web hosts for some help and was told to modify my security settings and was sent a link:
http://forums.asp.net/t/1111145.aspx/1
I've read what ...
0
votes
3answers
542 views
Setting up different roles depending on url in web.config
<authentication mode="Windows"/>
<authorization>
<allow users="USERS"/>
<allow roles="ROLES"/>
<deny users="*"/>
...
1
vote
2answers
378 views
add a custom web.config attribute to a pre-existing element
I have created Custom .NET controls, and I'd like to know if it's possible, how to add a custom attribute in the web.config when you add the reference to the control.
Currently it is:
...
2
votes
3answers
5k views
How to read <connectionstring> of web.config from a console application?
I have VB.net console application. I would like to read the (ConnectionString) from a web.config.
Web.config is located at a particular path in my virtual PC, say "C:/mywebConfig"
<add ...
1
vote
2answers
346 views
Asp.Net Session expires immediately
My Asp.net Session Expires immediately even though i did the settings in web.config file,
<system.web>
<sessionState timeout="2880" mode="InProc" ...
0
votes
1answer
35 views
How to decide an object behavior through the web.config?
I want to be able to define in my web.config the type of connexion my object will use to get data (variable) (from an xml or from a databases).
I though about using a Strategie Pattern, but I'm ...
1
vote
2answers
1k views
Using a class defined in App_Code in web.config
I have a class named CustomWebAuditEvent defined in App_Code/CustomWebAuditEvent.vb and I'm trying to use it in a eventMappings of my Web.Config
<healthMonitoring enabled="true">
...
1
vote
2answers
2k views
Display specific error message on custom error page
I know it's possible in asp.net to create a custom error page in a web app, by putting the following line in the web.config:
<customErrors mode="RemoteOnly" defaultRedirect="frmErrorPage.aspx" ...
0
votes
2answers
329 views
Edit the Web.Config file
I'm attempting to update some values in the web.config file from code during an install process.
So far I've found this for updating the connection string,
' Open Application's Web.Config
...

