Read Session State Information In Web.config?

Jun 8, 2011

I configured session state in web.config.<sessionState cookieless="AutoDetect" timeout="5" sqlConnectionString="....."/>Now, I want to know timeout and sqlConnectionString from code-behind.

View 1 Replies


ADVERTISEMENT

Asp.net - Finding All Use Of Session State?

Feb 3, 2011

I'm looking for some smart ideas on how to quickly find all usage of session state within an existing asp.net (MVC) application.

The application in question was the subject of outsourced development, and has been running fine in production. But we recently realised that it's using InProc session state rather than (our preferred route) StateServer.

In a small scale test, we switched it over to StateServer, and all worked fine. However, when we deployed to production, we suddenly experienced a large number of errors. I'm not sure if these errors were caused by this change (they were actually complaining about database level problems), but removing the change allowed the application to function once again (this may have just been because it caused a recycle to occur).

So before I try switching it again, I'd like to perform a thorough audit of all objects being placed in the session (I'd previously taken a quick look at a couple of controllers, and they seemed fine). If I had full control over the code, this is the kind of place where I'd just comment out the class (to compile and find the various ways of reaching the session class), then comment out the accessors, hit compile, and visit each error. But I can't do that with built in .NET framework types.

I decided to try using Reflector. I've analyzed the "Used By" for each of the following:

System.Web.HttpSessionStateBase.set_Item(String, Object) : Void
System.Web.SessionState.HttpSessionState.set_Item(String, Object) : Void
System.Web.SessionState.HttpSessionState.set_Item(Int32, Object) : Void

[Code]....

View 2 Replies

Remembering Session State In HttpWebRequest?

Aug 12, 2009

Remembering session state in HttpWebRequest

View 2 Replies

Remembering Session State In WebClient?

Aug 12, 2009

Remembering session state in HttpWebRequest?

View 2 Replies

Session State Contents Count?

Feb 12, 2009

I have several sessions stored at one time, and i want to count a particular one:

i have session.contents("session1") and session.contents("session2")

but i only want to check if there is anything in session2...

I tried this:

If Session.Contents("session2") = "" Then

as in, if theres nothing in it, then do something. But... it says when there is nothing in session2, that theres no object reference, i want to do something like this:

session.contents("session2").count or something

View 1 Replies

Asp.net - Get Uploadify To Work With Cookieless Session State?

Jan 18, 2010

I have an uploadify control working fine in a vb.net web application - however whenever I switch on cookieless session state in web.config (cookieless="true") - it stops working. In my upload IHttpHandler I can see that the data stored by uploadify is nothing:

[Code]...

I'm guessing that the flash isn't honoring the session id in my url? how to keep uploadify working when I turn on cookieless session state?

View 1 Replies

Asp.net - Unable To Access Session State From Class?

Jul 2, 2010

I have a Dynamic Data application to which I have added a class for extending EDM. Everything works great, but now I am trying to set an entity property value equal to a value in session state - and its not recognizing the Session command. I'm trying to do something like this:

audit.action_by = CStr(Session("person_name"))

I think this is because I do not have the class Inheriting Page, but if I do add Inherits Page it breaks other stuff. How can I have the class include the ability to utilize sessions directly without inheriting Page?

View 2 Replies

Detect ASP Session State Type From Code?

Jun 7, 2010

I'm trying to track down a problem on our test environment. Previously it was set to use InProc Session State Type, but I've added in the SQLServer type for one specific Web App. I did this because we use the SQLServer type in our production environment and I want our test env to match as closely as possible.

However, after changing it to SQLServer I do not get any errors when trying to store unserializable data in session like I would expect. It works just fine, even though I would think it shouldn't. I'm a relative newbie when it comes to configuring this, but from the various tutorials I googled, I thought I covered all the bases.I was wondering if there's any code snippets to verify which session state type an application is actively using.

View 1 Replies

Using Session State Dont Work Properly

Dec 8, 2010

i am still new to using session state, i want to convert page name into and integer according to a database table a function then compares "X" and "Y" to check if a user have the right to view this page..i know this is not the best way of managing website security, but it is like "training on how to use the session".[code]

View 1 Replies

Session State Lost After HttpWebRequest Within AJAX Post?

Dec 21, 2011

I have a bit of strange behaviour in an asp.net web application that involves the session state being lost.

Process A user logs into the application and the session is set. They then fill out 1 field, and the application then does an AJAX POST to a .asmx web service. Within the web service, I am using a HttpWebRequest to grab data from another server.

This data is then output to the browser.A few more fields are then filled in, and the data is then again Post to the same web service via an AJAX POST.

[Code]...

View 2 Replies

Save Window State To Config?

Apr 20, 2009

Is there any way to save a form window state including all of the controls etc that it has on it in their current state? I'm having to write long functions for each control just to save and reload from a config file, so I'm spending more time on user saved settings than on my actual project.

View 3 Replies

Asp.net - Control Website Folder Access Using Web.config And Session Variable?

Jan 27, 2011

the following web.config file is placed in a specific sub-folder on a website. It will allow the user John.Doe to access the pages inside the folder but will deny anonymous users

<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.web>

[code]....

View 1 Replies

Using 2 Databases For Session Information In ASP.NET?

Mar 26, 2012

My website allows users to type a code into a textbox. If a recognized code is entered, the page will refresh and display a welcome message to that user, otherwise an error message will come up. I am putting their manually entered code into a session so that their name can be pulled up. I can't get the session to stay between pages.

I have been told to make sure EnableSessionState="true" but that doesn't work on master pages.I've been told to check IIS settings, but I can't because I don't have permissions to it. Tried SessionState cookieless="UseUri" and somehow that created a never-ending redirect loop.I have debugged the functions and they DO return values. The textbox DOES go away when I enter a code and the welcome message gets displayed with the user's first and last name, so I know that works.I've checked to make sure there is no Session.Abandon code anywhere in the site.

I added a Watch to every instance of Session("IB") on the page and they are filled correctly when I enter a code into the textbox. Then when I click on a link to move to another page, the debugger stops on the very first line in my Page_Load, Dim ib As String = CType(Session.Item("IB"), String) and all of my watched IB variables immediately turn into Nothing.

Here is the code behind for the master page:

Imports System.Data
Imports System.Data.SqlClient
Imports System.Data.OleDb
Partial Class MasterPage

[code]....

More:sessionState has been changed and the site still acts like it has been, the ConnectionString must not have anything to do with the problem with the 2nd database losing it's session. It's gotta be something in the code behind, I can't think of what else could be wrong with the web.config.

<sessionState mode="InProc" timeout="20"></sessionState>

We also found out that the session variable is still there, it just won't display the user's information when it's connected to the back up database connection.

View 3 Replies

Retrieve Active Directory Environment And Session Information?

Jul 20, 2010

I'd like to be able to get and set the different information for a user in Active Directory on Windows Server 2003 under Environment and Session tabs through a VB.Net application. I am familiar with System.DirectoryService but I can not find the correct attributes for these particular tabs. For example, I'd like to check "Connect Printer at logon" or set "Idle session limit".I've found the "ms-TS-Connect-Printer-Drives Attribute" and other attributes like it but they are only implemented on Server 2008.

View 1 Replies

Populate A Drop Down List With State Information From A Database?

Jun 7, 2011

Background - I'm trying to populate a drop down list with state information from a database. I'd like the full state name to be the option and the state abbreviation to be the value. Example:

<option value="AL">ALABAMA</option>

Current Progress - The full state names and abbreviations already exist in the DB. I've successfully populated the DDL with full state names from the DB. Here's the code I've used to do this (minus stuff I've deemed irrelevant).Model Context (generated from template):

Partial Public Class BrokerCRMEntities
Public Property States() As DbSet(Of State)
End Class
State Model (generated from template):
Partial Public Class State

[Code]...

Question - In addition to populating full state names like I've done above, I'd also like to populate the value of the select options in the same DDL with the state abbreviations in my DB/model. How is this done?

View 1 Replies

Raise Information State Value From A Function Call In A Thread

Mar 4, 2012

I'm calling a class function in a thread function. I'm using invoke method to send a value to a progressbar in the main form and I don't know how to do that in an other class function called by the thread function.

My goal is to send a value to a progressbar to the main form from the thread function and even from the function called by the thread function.

My code:
' Invoke sub
Public Sub UpdPgEvent(ByVal value As Integer)
Me.pgFindEvent.Value = value

[Code]....

View 1 Replies

Asp.net - Read Back An Object Stored In A Session?

Jun 2, 2010

Structure MainStruct
Dim Ans1 As String
Dim Ans2 As String
End Structure

[code]....

The question is how can i read back the contents of the list, stored in the Session?I mean something like...

Build = Session("MyData")

View 2 Replies

Add My Own Object Into App.config And Read It?

Apr 10, 2011

I'm trying to add a new section to my app.config file under the applicationSettings section and then read it from my WinFroms VB.NET application.[code]...

View 1 Replies

Read Web.config From Iis Web Directory?

Jan 15, 2010

i am using a windows application as well as web application developed in visual studio 2010 beta 2 using .net framework 4 on windows xp/windows server 2008/windows7 i am able to read web.config file on system running windows XP sp2 but same is not read by windows 7 and windows server 2008 i installed my web application on iis 7 on said windows with .net 4 but it not read web.config by my windows application. i used below code on form_load in windows application for reading that web.config-

[Code]...

View 5 Replies

Read XML Config File?

Apr 10, 2009

I would like to be able to read the entire document, and make changes to it before run time. I am making a deployment tool for my application, and most of my customers do not want to rename their servers, nor do I want to have to rename the server in the connection string section of the app config file.

View 3 Replies

Read AppKey Value From Web.config In Clientside Js?

Aug 15, 2012

I have created a appkey variable in the web.config file and i'm now trying to read it in an aspx page within a javascript variable.

[code]...

View 3 Replies

Read Values From App.config In .Net 4.0 Using ConfigurationManager?

Apr 10, 2011

I am creating a windows service in .Net 4.0 and testing some functions of said service with a windows forms client by referencing the service project.The service project has an App.config file and that file looks like this: [code]a null reference error is thrown because my connection string is not loaded.The only connectionStrings that are loaded are from the machine.config file located in [code]If I create an application scope setting for the service, I can get that setting by using the My.Settings.setting so it's not like the App.config file is not being read.why are my connectionStrings not being loaded from the App.config file?When referencing a project(parent) from another project(child), the child's app.config is used even if the parent's classes are being used.Thus, I can get the connectionStrings to show up if I copy them over to the child's app.config. When trying to open it manually, my currentDirectory was of the child, not the parent (strange how it did not throw an exception - it wouldn't have been able to find the config file it just silently used the machine.config.

View 4 Replies

.net - Read <connectionstring> Of Web.config From A Console Application?

Dec 20, 2011

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 name="MY_DB" connectionString="Data Source=DATASOURCE;Initial Catalog=DB;Persist

Security Info=False; User ID=***;Password=****;" providerName="System.Data.SqlClient" />

My code:

Dim connString As String = String.Empty
connString = ConfigurationManager.ConnectionStrings("MY_DB").ConnectionString

Whenever I try to access it, i get the error not set to an instance of an object or something like that :)

I tried to add the web.config in my Project, but still get the error.

View 3 Replies

.net - Read A Settings Value From The Web.config File In An ASP.NET Application?

Aug 18, 2010

I'm trying to use the following command:

Dim xmlFilePath As String = _
System.Configuration.ConfigurationManager.AppSettings("XmlFilePath")

to retrieve the following setting:

<applicationSettings>
<MySolution.WebProject.My.MySettings>
<setting name="XmlFilePath" serializeAs="String">

[Code]....

However, xmlFilePath shows up as Nothing after that line of code is run.

What's the correct code to get a setting out of the web.config file in an ASP.NET application?

NOTE: Although you can add keys individually to the <appsettings> tag, I'm trying to figure out how to use it with the "Settings" tab in the project's properties.

View 2 Replies

How To Read / Write Custom Config File

Jan 6, 2011

Environment: .Net 3.5 VB.net (C#ok too) I wrote a multi-project WinForms app that needs to load a couple dozen variables from a client section of a config file based on user's selection of client. Also some program variables need to be loaded as well. So far so good, I put them in an app.config file.In the appsettings section I put the main program variables. e.g.

[Code]....

View 3 Replies

Read A Custom Section In App.config From Codebehind?

Dec 29, 2011

I have an app.config file that stores values in a few different sections. I have these snippets:[code]How do I read the connection string in the codebehind? Specifically the value which is [code]

View 2 Replies

Read Default Values From AppName.exe.config

Mar 15, 2012

How do you read the default values from the appName.exe.config file? My application only reads these values on first installation. Subsequently, it reads the updated values sitting in the user.config file.

View 2 Replies

Way To Read Settings Of An App.exe.config File From A Linked Dll?

Sep 14, 2010

Is there a simple way to read from the global application.exe.config file from a dll?urrently I am loading the file as an XmlDocument but I wonder if there is a better solution.That's what I mean:If I create a new WinForms Project I have a Settings Tab in the Project properties where I can add some simple values (And I want to access the per Application settings, not the user beased ones).From my code I can access these values with:

Console.WriteLine(Properties.Settings.Default.SomeValue);

The Settings class is autogenerated in the file Settings.Designer.cs.Now I have the case where a dll need's to read the settings from the Main Application's config file. Is there a simple way to achive this? Currently I am reading the file as an XML Document.

View 2 Replies

Web.config ApplicationSettings Values Not Being Read From WCF Service?

Dec 6, 2011

I have a WCF service with a setting I created in the WCF application property editor (settings tab).It has created something like the following property in MySettings class in the Settings.Designer.vb file. Notice the DefaultSettingValueAttribute is set to "This is the OLD value". That's my value for local testing.

<Global.System.Configuration.ApplicationScopedSettingAttribute(), _
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.Configuration.DefaultSettingValueAttribute("This is the OLD value")> _

[code]....

The problem is after restarting the WCF service (rebooting the server machine completely), it never reads the new value. It continues to use the old value that was set as the default value in the designer file.I think this must have to do with file permissions, but I don't see anything in the event log that indicates a problem. It's like the WCF service isn't even trying to read the web.config file.Why isn't the service reading the settings value from the web.config file?

View 1 Replies

Write And Read Some Configure Strings In App.config?

May 8, 2012

In VS2010 how can I write and read some configure strings in app.config.

I wanted to add PrinterPort, PictureDirectory, ApplicationDirectory,LastImage, ecc

View 7 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved