Using And Changing A Variable In Another Class (c#)?

May 13, 2010

i have just started to learn silverlight, and i'm using C# as code.

now i want to declerate a variable in one class "mainpage" and i want to change the variable in the class "mainpage"

but i wanna do it through another class called "contact"

using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;

[Code]....

i now know that i can't change the variable "pageopen" because it's static, but i don't know how to fix it?

View 6 Replies


Similar Messages:

Public Variable C# - Variable Is Assigned A Value In Another Class?

Mar 7, 2010

[Code]....

The variable is assigned a value in another class like this:

[Code]....

View 1 Replies

How To Prevent From Changing The Boolean Variable To The Original Value

Dec 2, 2010

I change the value of the boolean variable to true but then I have to refresh the page by clicking another button or two. Once the ASP.NET page refreshes, the value returns back to false when I want it to be true. How can I prevent it from changing the boolean variable to the original value and keep it as true. What would be the C# syntax for this.

public partial class _Default : System.Web.UI.Page
{
bool plus = false;
bool minus = false;
bool multiply = false;
[code]...

View 4 Replies

Get The Time From The Datetime Variable Without Changing It Into A String Using C#

May 27, 2010

i have two clock times in my DB as varchar datatype.. i loaded it from db as varchar itself. in C# i have assigned this value to a datetime variable.. how can i get the time from the datetime variable without changing it into a string.

View 4 Replies

C# - Changing Columns In Display Based On Variable?

Mar 25, 2011

I currently have a table with a repeater that is being filled with data

<table width="100%" >
<tr>
<td class="add_border_bold" nowrap>Title</a></td>

[code]...

View 1 Replies

Changing CSS Class Based On Querystring

Jun 12, 2010

I have a repeater control that generates a dynamic menu in an unordered list format. I have given each <li> item an id that includes a value from my database to make them unique:

<li id="category<%adding in my dynamic value from database here%>"><a href="#">Some Link</a></li>

One of the values that gets added to my list ids will match my querystring, making it the current page. So therefore I would like to highlight this to the user by changing the css class of the relevant li element. In my code behind I have created a string variable that takes the querystring value and modifies it to match the id. So for example my variable is "category7" - and I also have an li item on my page with an id of "category" How would I go about matching these two things in my VB and adding a class to the li element where the id = my variable.

View 5 Replies

Web Forms :: Getting Value Of A Variable In A Class?

Jul 12, 2010

I created a custom MembershipUser and added some values, like this:

[Code]....

How do to retrieve the value of one variable of this class?

View 22 Replies

Forms Data Controls :: ListView Changing CSS Class Dynamically

May 17, 2010

I have a aspx where i have thumbails of pictures in listview, once i click on a picture, picture shows up as big next to list view. Now what i want to do is, have a red color border around the thumbail of picture which is show big at the center. check the Picture I just want to change the CSS class of the image selected in the listview. I get to know which image id is selected through query string PageNO or if <%#Eval("PageNo") %> is =2 then second image css class should be redBorder else imgBorder1 ASPX Page

[Code]....

Code Behind:

[Code]....

View 12 Replies

Visual Studio :: 2010 Tab Menu Changing The Class / Style?

Apr 20, 2010

I have a trial version of VS2010 and created a simple out of the box ASP .Net web application. I have been playing around with the css file for the project and have yet to figure out how to effect the menu tabs.

View 2 Replies

Forms Data Controls :: Changing Values In A GridView From Another Class?

Jun 22, 2010

how can I change a checkboxfield in my Gridview from another class/file, my griedview name is gvUserEntry.

So what all do I need to do if I want to access this from another function

This is my grid view code....

<asp:GridView ID="gvUserEntry" runat="server" AllowPaging="True" AllowSorting="True"
AutoGenerateColumns="False" BackColor="White" BorderColor="#999999" BorderStyle="Solid"
BorderWidth="1px" CellPadding="3" DataKeyNames="RowId" DataSourceID="SqlDataSource6"
EnableModelValidation="True" ForeColor="Black" GridLines="Vertical">

[Code]....

Nw i want to change the TempPwd checkboxfield from another aspx file namely NewUserLogin.aspx, So is it possible? The idea behind doing this is, as soon as the user enters a new password in the NewUserLogin.aspx page, the checkboxfield in the GridView of CustomerSetup.aspx file should be unset.

View 1 Replies

Create A Class To Keep Variable And Functions?

Feb 2, 2011

I have several Include files in asp classic that I would like to convert to the class in C#, I have bunch of variable, Constraint, functions, DB connection. Is class the best way to convert them?

View 2 Replies

Web Forms :: Class-level Variable Loses It's Value?

Jun 22, 2010

Google usually solves my problems for me, but this one has me stumped. I have a page with the following code, in which lstPayments is a listview control:

public partial class frmPerson : System.Web.UI.Page
{
protected bool paymentWarning = false;
protected void Page_PreRender(object sender, EventArgs e)
{
if (paymentWarning == true)
{
string alertText = "alert('Hello World');";
if (!ClientScript.IsStartupScriptRegistered("Alerter"))
ClientScript.RegisterStartupScript(this.GetType(), "Alerter", alertText, true);
}
}
protected void lstPayments_ItemInserted(object sender, ListViewInsertedEventArgs e)
{
paymentWarning = true;
}
}

As you can see, I'm trying to get an alert box displayed after a new payment is entered. As I expect, lstPayments_ItemInserted is executed first, and paymentWarning is duly set to true. However, when Page_PreRender subsequently executes, paymentWarning has been re-initialised: it's false again!

The only way I can get the class-level variable paymentWarning to retain it's value between the two event handlers is to declare it static, which I don't want to do for obvious reasons. There must be something I am failing to understand about how class-level variables work in aspx pages.

View 4 Replies

Static Variable Inside A Class In Web Application

Jul 28, 2011

I understand the problem of the static variable inside a class in the web application, now I try to create a simple class to deal with SQL Server for example, so I created Static Method inside this class, this static method used in insert, update and delete from database, I wonder if this is safe, and there is no problems will appear ?

View 10 Replies

Web Forms :: One Sub In UserClass Not Recognizing Declaration Of Class Variable?

Jul 19, 2010

I have a user control in which I have declared a connection string as a private class variable.

I have a bunch of cascading dropdown lists in this control.

In one of my subroutines PopulateDdlPostalCodes I get an error "Connection was not initialized".

In all the other subs that use Conn, the class variable is being recognized.

If I duplicate the declaration of Conn in this sub then all works ok.

Why is this sub different than all the others?

[Code]....

View 1 Replies

State Management :: How To Access Session Variable In The Class

Mar 27, 2010

How to access session variable in the class?

View 5 Replies

C# - Setting Class-Level Variable To Use Between Event Handlers?

Mar 17, 2010

I'm having a hard time understanding why the following code doesn't work. I'm sure it's something remedial that I'm missing or not understanding. I currently have a page that asks for user input. If, based on the input and logged in user, I find data from this page already in the database, I need to update the existing records rather than creating new ones, so I set a class-level bool to true. The problem is, when MyNextButton is clicked, PreviouslySubmitted is still false. So, I'm not sure how to make the value of this variable persist.

public partial class MyForm : System.Web.UI.Page
{
private bool PreviouslySubmitted;
protected void Page_Load(object sender, EventArgs e)
{
MyButton.Click +=
(o, i) =>
{
q = from a in db.TableA
where (a.SomeField == SomeValue)
select a;
if(q.Any())
{
PreviouslySubmitted = true;
//populate the form's fields with values from database for user to revise
}
}
MyNextButton.Click +=
(o, i) =>
{
//the value of PreviouslySubmitted is false at this point,
//even if I made sure it was set to true the previous postback
if(PreviouslySubmitted)
{
//update database
}
else
{
//insert into database
}
}

View 2 Replies

ADO.NET :: Unable To Create Object Variable For Linq Data Class?

Sep 23, 2010

For some unknown reason I suddenly am unable to create an object variable for a Linq Data Class. If I create a new project and try the process again with the same database everything works as advertized.The code I am using is Dim db As New RoggDataContext which gives me an error on the object variable "db": Overload resolution failed because no accessibility 'NEW' accepts this number of arguments.I have looked inside every file in the Web Project like the web config to check the connection string, gobal, and designer.vb looking for any errors whit no JOY. I also tried to create a new form and code behind with a button and received the same error.This is mind blowing because as I already stated, I can create a new Web Site and the problem goes away.

View 3 Replies

Using Hidden Input Variable In The Base Class To Persist Value Across Postbacks?

Jan 13, 2011

In my base class:

[code]....

In my user control that inherits from BaseUsercontrol The ascx has:

<asp:Button id="btnTest" runat="server" OnClick="OnButtonClick" />

Why can't I use the hidden input variable this way?

View 1 Replies

C# - Declaring Global Variable/class In Application Scope 3 Ways - Which One Is Best

Mar 3, 2010

I am looking for differences between those 3 ways of using static class in asp.net application scope.
Will all of these point to the same class?

Which one is preferable >object< defined declaratively inside global.asax or static class ?

examples:

<object runat="server" scope="application" class="classname" ID="objID"></object>

VS

public static class classname {}

VS

Application("a") = new classname();

View 1 Replies

State Management :: Keeping Application Variable Or Static Class For Global String?

Nov 18, 2010

I need to keep a global variable throughout the whole time the user is at my site, but do I use Application or a static class? The string variable should store a region name and my site makes a few changes depending on which region that has been set.

I read that Application was mainly for classic ASP, but I also read that a static class cannot be instantiated at runtime (e.g. when the user has logged in).

So, have I got something wrong here and which solution do I use?

View 2 Replies

Changing The View (.aspx) From The Code-behind (.aspx.cs) Class?

Nov 1, 2010

I have a 'classic' ASP.NET app (.NET 3.5) with a pretty standard runat="server" style form with server-side controls and an 'Execute' asp:button. In the code-behind, the executeButton_click handler processes some of the other controls, runs a report, and drops the result into an asp:label. So the effect of pressing the Execute button is that the entire page reloads with the report inserted into the label.

I need to change this so that when the Execute button is pressed, the report pops up in a new window with a different layout (ie without the controls and form). If I was doing this in an MVC framework I would just change the view template in the 'execute' action, so the analogue for ASP.NET would be change the code in front, ie the .aspx file that gets used, from the code-behind class.

Is this possible? I know the link between the .aspx and the .aspx.cs isn't extremely tight as it is possible to reuse a code-behind class in multiple .aspx files. So can I set the .aspx file to render from the code-behind?

View 2 Replies

State Management :: Session Table Value Also Changing When Changing Any Coloumn Name?

Jan 10, 2011

The problem is when am assigning my session table value to newly created table and if now am changing any coloumn name then the session table value also changing.

But my question is am assigning Session value to newly created table so how should session value should be affected?

for refference in my application

sessionState
mode="InProc"

View 5 Replies

Public Static Variable Declared In Public Static Class MyGlobals In A 'Code File' Template?

Jan 27, 2011

I have a question about C Sharp ASP.NET:Is there a difference (in code speed, resources) between:public static variable declared in public static class MyGlobals in a 'Code File' template;and the variable declared in a normal 'Class File' template;I use this variable in 2 different Class Files and also in _Default Page codebehind cs file.In fact in my case I need about 20 global variables of type List<string>.

View 9 Replies

JQuery :: Grab A Global Variable Or Session Or View State Variable In The Javascript?

Dec 9, 2010

can we grab a global variable or Session or View State variable in the javascript or using jquery?

View 2 Replies

State Management :: Public Variable Vs Session Variable To Store Logged In UserID

May 17, 2010

I have a web application which uses a session variable to store the logged in userid. If no user is logged in, of course this variable will be empty and the contents displayed on my website are meant for guests. If there is a user logged in, the user specific controls/access/links will then be a displayed.

I am now having issues with my hosting where on shared application pool, the worker recycle is triggered every 90 minutes, this will clear sessions causing all my users to be logged out. I opted for a dedicated application pool, which got worse because I am only allocated 50MB memory limit and if this is reached, the worker recycle is triggered and I lose my sessions again. I have tried as much as possible optimization techniques, e.g. dispose where possible, close connections, disable viewstate for static controls etc but my memory per instance keeps building up from page to page without any signs of improvement. I don't use loops nor store huge objects like bitmaps etc but my sessions are now gone even faster than 90 minutes in shared application pool before.

I have considered using SQL Session State but there isn't a simple guide on using this with MySQL. I am getting desperate and considering using a public variable, a string as a replacement to store logged in user id instead of in a session variable. I am pretty sure this will solve my issue with sessions being recycled but are there any negative consequences of doing this? One problem I can think of is if the user closes the browser, the system will never know that the user is now logged out and this public variable should be nothing. In this scenario, will the GC eventually clear this abandoned public variable.

View 10 Replies







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