Web Forms :: Declare Global Variables That Are Accessible On All Pages

Jan 9, 2014

it's possible to declear global variable in asp.net C#.

View 1 Replies


Similar Messages:

C# - Dictionary Lookup Efficiency & Request Scoped Global Variable Accessible By Global.asax And Pages/etc?

Feb 8, 2011

I know there is a couple answered questions on here regarding "request scoped" globals, but I want to nit-pick on something specifically and maybe squeeze some extra enlightenment out of one or two of you.I have an ASP.NET C# Website and a static Dictionary of objects (loaded from DB once on Application start). Each page request will need to do a lookup in the Dictionary (based on a key derived from the request url/etc) and get the appropriate object.The issue is I'm trying to maximize efficiency by reducing the lookups to the Dictionary per Request. Doing just a single lookup within a Page itself is easy enough and I can pass the object to sub controls, etc too.. but global.asax is separate from the Page and it also needs to use the object (in Application_BeginRequest and Session_Start).

So is doing a Dictionary lookup once in Application_BeginRequest, once (when necessary) in Session_Start and once in the Page negligible speed wise, even if there are many requests coming in every second?I would like it if I could just have a Request scoped global variable that I can easily call upon.. the only one I see available though is HttpContext.Current.Items and that is a Dictionary itself.Am I beingridiculously nit-picky with my concern over efficiency? or will these milliseconds (nanoseconds?) get me in the long run when more and more requests are being made?

PS. I currently only have around 100 objects in the Dictionary although this may increase in the future.

View 2 Replies

C# - Declare Global Variables In MVC?

Feb 25, 2011

How do you declare global variables in ASP.NET MVC?

View 6 Replies

Web Forms :: Declare Global Variable In Master Page And Use It In Content Pages

Jun 16, 2015

how to declare global variable in master page and use it in all pages

View 1 Replies

Accessing Static Variables From Global.asax In Aspx.cs Pages?

Feb 13, 2011

i declared a static variable in global.asax file like below

<%@ Application Language="C#" %>
<script runat="server">
static string Sv;
void Application_Start(object sender, EventArgs e)
{
// Code that runs on application startup
}

i want to access this variable in aspx page. how can i access this variable.

View 2 Replies

Web Forms :: Session Variables Are Accessible To Multiple Users?

Oct 8, 2010

I have an asp.net website in which users can submit reports. Another tester and I tested this page at the same time and when I went to review the information I submitted, it displayed information that I didn't submit. It displayed the info submitted from the other user.

I use session variables for these values. I don't understand how this happened? What can I do so each user can individually submit their information without overlapping some one else's information? The plan is for multiple users to be able to use this page to submit their weekly layer reports.

The first example of code is how I add the session variables from the textboxes.

[Code]....

The second one is how I display them in labels on a confirmation page.

[Code]....

View 16 Replies

Web Forms :: How To Declare A Global Variable That Can Be Used Within A User

May 15, 2010

I would like know how to declare a global variable that can be used within a user after the user login and before the user logout across all the possible pages.

I need to develop a web application that will connect to 5 different servers depends on the selection of user on what server they wish to connect and after they select a server and login...I will need to keep track the server name in a variable last until the user logout (user may visit various pages but the server name MUST NOT be changed due to other user login into different server). So how can I do it so that other users may select different servers and will keep the server name for each different users.

Let says:-

User A selects Server A and login and User B selects Server B and login at the same time, so how the global variable can handle the needs for each user (User A & B) with different server select?

Is "Session" the only way to fulfill the above? I think of using Application State but it seems that the value stored will be shared by all users and not for a particular user.

View 1 Replies

C# - How To Declare A Global Variable In MVC Page

Jun 4, 2010

I've began working with asp.net mvc very recently and I've ran into a problem.I've got an aspx page which renders a few ascx pages. What I'd like to do is declare a global var at the aspx page so it is visible to all its childs. I tried <% var i = 0; %> but it wasn't visible at the child pages. What could I do?

View 4 Replies

How To Declare A GLOBAL Variable An Aspx Website

Aug 26, 2010

How to declare a global variable or a public sub in a web application that all aspx pages can have access to?

View 5 Replies

State Management :: Looking For A Way to Declare A Global Variable?

May 14, 2010

I'm looking for a way to declare a global variable (so all pages could see) but personal (so if one user puts some value in it, it won't matter to another user or change his value).Sessions and hidden fields won't do. I've tried working with declaring keys in Web.config but unfortunely, the keys values aren't personal, and all users share the same key value.Another way I was thinking was maybe classes, but perhaps there might be an easier solution?

View 19 Replies

DataSource Controls :: Declare Variables In A Gridview?

Jul 2, 2010

I´m having a SQL query statement in management studio that runs prefect. I can´t have it set in a gridview.In SQL management studio I´m declaring some variables. It seems like I´m not able to declare inside the query statement in a gridview. Do I have to do the declaring outside the gridview?Here is my code in management studio

[Code]....

View 3 Replies

DataSource Controls :: Declare Variables And Pass Values In Vb?

Mar 6, 2010

I need to declare a variable xyz, then, using a select statement, pass a variable into it so I can then insert it into a table.

Dim @xyz As
Integer
set @xyz = (select xyz
from systable)

1. I get a squiggly line below the @.

2. I get informed that set and let are no longer supported.

3. When I remove the @ I get the squiggly below select.

View 7 Replies

Class In App_Code Not Accessible By Global.asax.cs Error - Namespace Name 'MyClass' Could Not Be Found

Nov 18, 2010

I've created a new class in App_Code

namespace Site {
public class MyClass {
public MyClass() {
}
}
}

this is my Global.asax.cs

[code]....

The error is in: MyClass myClass = new MyClass();

The type or namespace name 'MyClass' could not be found (are you missing a using directive or an assembly reference?)

View 1 Replies

State Management :: Declare A Variable In Page Load{} As Global?

Jan 2, 2011

i want to declare a variable in page load{} as global so that i can monitor it so that it is not recreated each time

View 4 Replies

Web Forms :: Global Variables, Menus And Post Back?

Jan 8, 2010

with a problem im having or at least give me an idea about which direction i should be going in.I have an asax file - with the following void Session_Start(object sender, EventArgs e)in that I am storing a session which holds a boolean.This boolean holds a flag which when set to true tells the application to go to the database and retrieve data, if its set to false, it checks the information in memory.I am using master pages and inside my master page i have and ascx files - which holds my navigation items(I build the navigation menu based on certain criteria)on a content page (a page that uses the master page) I perform a function when a button is clicked and I set the session flag to truethe problem is that the flag is not being checked until i refresh the page twice and therefore the menu is not updating until the user clicks to another page.my suspicion is that it is because of the page life cycle (the event handlers are done AFTER page load) - is there anyway around this?Is there any web page links you have got that I cant google? (yes i have googled but to little luck - maybe im using the wrong search term).on an additional note im trying to avoid like the plague - storing anything in the viewstate

View 9 Replies

Web Forms :: With Javascript, Does A Response.redirect Clear Out All Global Variables And Values Declared?

Feb 7, 2011

For some reason it seems as though variables that I declare in javascript sometimes persist themselves across applications even when I do a response.redirect. I thought that a response.redirect would clear them out.

View 1 Replies

Configuration :: Network Printer Is Not Accessible In Published Pages?

Apr 13, 2010

I am using third party component for printing purposes (Combit list and label). There is dll which has function for printing. (means it suppresses the print dialgue box and have information embedded in a file about the printer location). The printer is shared printer and attached to machine which is different from the development machine. Now the printing from this printer works fine during debugging. But when I publish the pages in virtual directory and then executing the application does not print. (pages are also published on the development machine).

View 3 Replies

C# - How To Use Global Variables In ObjectDataSource.SelectMethod

Sep 10, 2010

I'm using ListView + DataPager + ObjectDataSource mix.

In the implementation of my SelectMethod of an ObjectDataSource I'd like to access a global variable set in the PageLoad() event (the method will return just the proper number of items per page). Although the variable is initialized in PageLoad() it appears to be null in SelectMethod. How can I change that?

[Code]....

View 4 Replies

VS 2008 / How To Use Global Variables In A Web App As Like In Desktop

Sep 15, 2013

as we do in desktop app, can we use global variables in a web app. it must be client side.

i hv created a class to handle global variables, but the issue is with it. if other user login on another pc at d same time, the variable got re-initialized. i want they must be client/ user specific.

View 6 Replies

Web Forms :: Particular Pages Needs Some Variables?

Sep 15, 2010

I have this condition in my page_load event and it seems to be ignored, i do have it OUTSIDE of my !IsPostback condition. I need to check those sessions EVERYTIME you get to the page, regardless if its the first time on the page or if you have been on the page / site for a while.. those sessions are being set on a different page and this particular page needs those variables in order to work.. so if they dont exist they need to be sent back to the first page so they can be set.

[Code]....

View 9 Replies

VS 2005 Finding Alternative To Declare Output Cache In All 200 Pages

Jan 20, 2010

I create a menu control in a user contol, named as RightUserrControl.ascx.

and i kept this RightUserrControl.ascx in nearly in 200 pages.

every thing is working fine , but when ever i am going to any page the page loading is very slow, nearly each page is taking 1 minute to load.

set caching for the user control, if this is the case , do i need to declare output cache in all 200 pages or is there any alternative way to resolve this issue.

View 8 Replies

Javascript - Access Global Variables That Are Set Inside An Event Listener?

Dec 18, 2010

I am working with Google maps api V3. I need to get the values of the getSouthWest & getNorthEast bounds of my map. To do this the 'bounds_changed' event needs to be fired in order to get the new values. This is all good, however, I need to access these values from outside the event and passed to a server side function (more specifically, I don't want to call my server side function every time the map bounds are changed).

My code is:

//Global
var sw, nw, Searchbounds;
function myFunc(){
google.maps.event.addListener(map, 'bounds_changed', function() {
Searchbounds = map.getBounds();
sw = Searchbounds.getSouthWest();
ne = Searchbounds.getNorthEast();
});
CallServerSideWebService(sw.lat(), ne.lng(), ne.lat(), ne.lng());
}

When executing this code I get the error message sw is undefined.

View 2 Replies

Web Forms :: Setting Global Themes To Master Pages?

Jun 28, 2010

We have a nested master page which we have made it as a seperate class library.(Becoz many projects use the same master page) Initially we had all our css files,skin files, images inside the Master page project itself. But now we wanted the themes to be global and moved it out to wwwroot as mentioned in the below link.

http://quickstarts.asp.net/QuickStartv20/aspnet/doc/themes/themes.aspx#global

The Masterpage has user controls out of which one user control has the telerik menu. The css is not getting set for that particular user control. We use relative path for setting the style sheet link. But it is not getting set. Its still referring to the old path. But all the skin files, images are pointing to the new global location. Except for the telerik menu rest all is aligned according to the style sheet.

When i do view source, the link to style sheet is pointing to the old location. I dunno why this happening. Is this a telerik issue or i am going wrong somewhere.

View 7 Replies

State Management :: Using Global.asax To Set Session Variables Pulled From SQLServer?

Sep 3, 2010

I have a custom class that pulls user information from a SQL Server table. Now that I'm expanding the site from a single page to others. I want to shift the code to the Session_Start event so that the information is always loaded when the site is accessed. How do I call my custom code from global.asax since its script and not a class.

View 5 Replies

Passing Multiple Variables Between Pages?

Mar 25, 2011

I am trying to pass multiple variables between pages....

Page1.aspx (sending page)
Dim StrValue1 As String
Dim StrValue2 As String
StrValue1='ASSIGN A VALUE......

This does not work correctly. Page2.aspx is recieveing Value1 correctly but not Value2. I dont think I have the correct syntax...

Have tried the redirect with an ampersand in the middle but that does not work either...

Response.Redirect("Page2.aspx?Value1=" & Value1 & "&?Value2=" & Value2)

View 4 Replies







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