1
vote
3answers
54 views
global variable in ASPX C#
Hi, I write a ASPX c# page, and I MUST use a global variable like this;
public static Decimal _Total;
protected void Page_Load(object sender, EventArgs e)
{
if (Pa …
0
votes
2answers
30 views
PHP equivalent of ASP.NET Application/Cache objects
My Google-fu hasn't revealed what I'm looking for, so I'm putting this one out to the crowd.
Coming from an ASP.NET development background, I'm used to having the Application and …
0
votes
8answers
448 views
Does there exist a publicly accessible parsable Country/Country Code list?
I find that I always find it useful to have a list of all Countries and their country codes. If someone provided it in multiple formats (eg: SQL, DDL, Xml, CSV, JSON, YAML...).
I' …
1
vote
3answers
34 views
The pains of creating a global application
Hey guys!
I need to create a global application. This means it should work ok anywhere in the world, at any country (or most of them). It's a PHP website that will deal with money …
0
votes
1answer
47 views
Global flag to check if any component has been edited in Flex.
I need to use a global flag. This flag will be set whenever I change my datagrid i.e. add/ update rows, change checkboxes, radiobuttons, etc. in my screen. Also, on what event can …
0
votes
2answers
23 views
Create a global Robot variable without throwing AWTException
I'm trying to create a global Robot variable in a java class without throwing AWTException. The only way that I can come up with it is by throwing the exception. The reason I need …
0
votes
1answer
61 views
In Code Igniter, where should I declare my global variables?
I'm new to code igniter.
I want to declare some global variables and global constants. Normally, I would put them in the includes/global.php of my own custom framework.
Wher …
1
vote
1answer
52 views
How do you get a PowerSoft report to resolve a PowerBuilder global function.
I currently work in an environment where reports must be emailed to users as a PowerSoft file.
There is a global PowerBuilder function which is used on a computed column my datawin …
0
votes
1answer
29 views
What’s the best place for a database-backed, memory-resident global cache in an ASP.NET web server?
I have to cache an object hierarchy in-memory for performance reasons, which reflects a simple database table with columns (ObjectID, ParentObjectID, Timestamp) and view CurrentObj …
0
votes
1answer
15 views
lost update issue…
on my server is a weblogic cluster ejb2 application. There is this table in the DB where other users will concurrently create, update and delete.
On my clients machines is a rich …
0
votes
1answer
34 views
In JSP, is there a way to see all available variables in the specific scope like in PHP?
Or better yet how do I dump all the variables in a given scope in jsp?
(In php you can use a function call to see all the system, global and user-defined vars and functions availa …
0
votes
4answers
154 views
Python | How to make local variable global, after script execution
Here is the code. What I need to do is find a way to make 'i' global so that upon repeated executions the value of 'i' will increment by 1 instead of being reset to 0 everytime. Th …
0
votes
3answers
93 views
Problem accessing global javascript variables
My application has something like the following structure
window.object1;
window.object2;
$(document).ready(function() {
window.object1 = new type1object();
});
function type1 …
-3
votes
2answers
153 views
Python| How can I make this variable global without initializing it as ‘global’
I have this code here. The only part I can add code to is in main_____ AFTER the 'i=1' line. This script will be executing multiple times and will have some variable (might not be …
1
vote
2answers
91 views
Python: Difference between ‘global’ & globals().update(var)
What is the difference between initializing a variable as global var or calling globals().update(var).
Thanks
