Access Static Class Properties From Aspx Page?

Jan 28, 2010

I am on .aspx page and i want to take the width and height of a control from a static class
where i have defined them as constans.

Is there any way to access that class directly from the aspx page?

I know that i can make a method like:

width="<%= getWidthSize() %>"

and inside the aspx.cs to define this method to take the size from that static class.

But i am asking if this could be directly managed from the web aspx page...?

View 2 Replies


Similar Messages:

Web Forms :: Access Aspx Class Properties From Outside?

Aug 19, 2010

I have added a static string variable inside a web page with it's class named VersionBase. The class is public, the variable is public, why can't I simply do VersionBase.MyString from anywhere inside the project like I can do with any other class?

View 13 Replies

C# - Is It Safe To Access .net Session Variables Through Static Properties Of A Static Object

May 10, 2010

Is it safe to access asp.net session variables through static properties of a static object?Here is what I mean:

public static class SessionHelper
{
public static int Age
{
get
{
[code]...

Is it possible that userA could access userB's session data this way?

View 2 Replies

Access Current Instance Of Page From A Static Class

Mar 22, 2010

Basic question - is it possible to access the current Page from a static class in ASP.NET?

I am thinking no, as google turns up no results.

View 3 Replies

C# - Accessing Inherited Properties Through A Static Class?

Nov 12, 2010

Currently, I am accessing the property by creating a static method like the one below.

public static class CartCollection : List<Cart>
{
public static void Add(Cart Cart)

[code]...

View 3 Replies

MVC :: Dictionary Class / How To Access Menu's Properties And Display Name On The Page

Sep 8, 2010

I do have Dictionary<Guid, Menu> where Guid is ID and Menu is my model for view which contains different properties

that is :

public class Menu
{ [code]....

now i do have extension method in which thru services i m assigning value to it..

extension method is like this :

public static Dictionary<Guid, Menu> GetMenuCategoriesModel(this IRService irService, IMCService imcService, Guid rId

my question is that i have view named "Index" and in that view i wanna display "name" and i am generating strongly typed view and i have to use Dictionary<Guid, Menu> as model , how do i access Menu's properties as i wanna display name on the page ?

View 9 Replies

C# - How To Access A Silverlight Control's Properties And Methods From An Aspx Page

Apr 26, 2010

I'm developing a web site, and i'm using infragistics for web, but I want to use in some pages silverlight controls (Infragistics too). Is there a way to access a silverlight control's properties and methods from an aspx page?

View 3 Replies

Access Class From Within The Aspx Page

Nov 22, 2010

I am trying to do something such as:

<%= Class1.GetName %>

in my ASPX page, but my class1.vb can't work like this, I have to declare it first in the aspx page, how can I make my Class1.vb file be shared among the whole website?

View 1 Replies

Web Forms :: Access Aspx Page Control In Webpart Class?

Jan 18, 2010

i have a hidden textbox in my aspx page. The aspx page also has a masterpage in the <% @Page> directive.

<input type="hidden" runat="server" name="txtType" id="txtType" />&nbsp;
actually in aspx.cs i am getting txtType.ClientID="ctl00_MainHeaderContent_txtType"

I have a webpart in a webpart zone in this aspx page. In the webpart CreateChildcontrols() I need to access this hiddenTextbox value. I am able to access it as

string TxtValue = this.Page.Request.Form["ctl00_MainHeaderContent_txtType"];

But instead of hardcoding I want to access as a control in the page or form. How can I do that I want to do as looping through the controls in the page but Page.Controls.Count gives 1 and that is MasterPage. How can I get the entire controls in the page and loop through and find the hidden textbox. I also tried as string TxtValue = this.Page.Request.Form["<%=txtType.ClientID%>"] in CreateChildControls() of the webp[art. But could not access hidden textbox like this.

View 2 Replies

C# - Access Static Class From Form?

May 10, 2010

I am using <%# MyFormatClass(Eval("fieldname")) %> to display data in a grid view on my page. MyFormatClass works fine, but now I want to move it to a central location that can be used by many pages. When I try to access the class <%# Utils.MyFormatClass(Eval("fieldname")) %> it no longer works. Is this something we are allowed to do?

View 1 Replies

C# - How To Access Singleton Class's Static Method

Nov 17, 2010

I have some confusion with singleton class, below are my some points:

1.Can singleton class have static method?,if yes then how we call that methods?
2.what is main difference between Static class and Singleton Class?

I have created my singleton class as follows:

[Code]....

In Above class structure I have created two method one is Static and second is non static, When I am trying to access Static Method it gives me compile time error.

How can I use static method of singleton class?

View 7 Replies

How To Access Public Properties Of MasterPage From External Class

Jun 13, 2010

Why i can't access MasterPage's public property (MessagePlaceholder) from other Class (Errors) ?Error compiler gives me is "Error 1 The type or namespace name 'MyMasterPage' could not be found (are you missing a using directive or an assembly reference?)"my master page code behind

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

public partial class MyMasterPage : System.Web.UI.MasterPage
{
public string MessagePlaceholder

[code]...

View 1 Replies

WCF / ASMX :: How To Get Access Public Properties From Webservice Class

Aug 2, 2010

i have websrvice class in this i declared a webmethod and a public property my problem is i want to acess service class public property in my asp.net web application after creating proxy object.

service class:

[Code]....

View 1 Replies

Javascript - AJax JSON Call Error When Trying To Access The Properties Of Class

Oct 7, 2010

I am making a JSON call to web method which is defined in code behind. The web method returns a class object.The class returns 3 properties one of type list and 2 integers. I am accessing these in the following manner:

success: function(result) {
alert(result);
alert(result.LookCount);
alert(result.length);
if(result.LookCount > 0)
{
var Info = "";
for(var i = 0;i < result.LookUps.length; i++)
{
Info += CreateLookUpGrid(result.LookUps[i].Client,result.LookUps[i].ClientOrg);
}

alert(result.LookCount) -> alerts undefined and when i alert result it shows me the compelte result string which has all data. So the data is returned correctly by web method. But I am unable to access it.

View 2 Replies

C# - How To Lock A Private Static Field Of A Class In One Static Method

Mar 26, 2011

I have a private static field in my Controller class in an MVC web application.

I have a static method in that controller that assigns some value to that static field, I want to apply lock on that static field until some other instance method in the controller uses the value stored in the static field and then releases it.

DETAILS:

I have a controller named BaseController having a static ClientId field as follows and two methods as follows:-

public static string ClientId = "";
static void OnClientConnected(string clientId, ref Dictionary<string, object> list)
{
list.Add("a", "b");
// I want the ClientId to be locked here, so that it can not be accessed by other requests coming to the server and wait for ClientId to be released:-
BaseController.clientId = clientId;
}
public ActionResult Handler()
{
if (something)
{
// use the static ClientId here
}
// Release the ClientId here, so it can now be used by other web requests coming to the server.
return View();
}

View 1 Replies

Javascript - How To Embed A Static HTML Page In Aspx Page

Mar 7, 2011

I have a static HTML page complete with client-side scripts and css (both are included in the html). I was wondering if it would be possible to embed this HTML page into an ASPX page and have the ASPX page be able to respond to javascript events that are raised from within the static html document? Does asp.net provide a specific control for this or can I use a frame?

View 3 Replies

Where The Static Variables Are Stored In Aspx Page

Apr 4, 2011

Possible Duplicate: Where are static variables stored in asp.net aspx page Hi can someone please tell me where the static variables are stored in asp.net aspx page.Is it in the view state? If so I guess you wouldn't want to stored big complex objects?

View 1 Replies

Web Forms :: How To Reference A Master Page Control From A Static Class

Feb 15, 2011

my MasterPage I have a label that reflects the name of the module that the user is currently in. I change the label text accordingly using the following ..

private void ChangePageTitle(string PageTitle)
{
Label lblPageTitle = (Label)Master.FindControl("lblPageTitle");
lblPageTitle.Text = PageTitle;
}

Instead of placing this method in the code-behind of every page, I want to put it in a single class and call it accordingly. I thought of using a static class but do not know how to reference the MasterPage.Can I use a static class? or do I place the method in the code-behind of one page and call Object.Method from the other pages?

View 2 Replies

Where Are Static Variables Stored In Aspx Page / Is It In The View State

Apr 4, 2011

where the static variables are stored in asp.net aspx page.Is it in the view state? If so I guess you wouldn't want to stored big complex objects?

View 2 Replies

How To Set Values For Model Properties On .aspx Page In MVC 2

Dec 3, 2010

I have a strongly typed view. I get model passed into the view and then i assign model values to labels etc.
I would then also like to set Model values programmatically on .aspx page, like:

<%= Model.someValue = "foo"; %>

and then pass that model back to controller action and than access those values. I know that I can apply values to model like these:

<%= Html.TextBoxFor(n => n.someValue) %>

but in these case, this is not an option for me.

View 2 Replies

Disabling Internet Explorer Properties In An Aspx Page?

Jun 24, 2010

Can I disable all properties of an Internet Explorer when it opens a particular page called "help.aspx".I want that no option should be displayed on that page,just the content of the page which include the image of a person.

View 1 Replies

Can A Aspx Page Have More Than One Aspx.cs Class To Inherit

Nov 30, 2010

i want to know, can one aspx page have two or more code behind page?

like if i have page collge.aspx, by default it will inherit college.aspx.cs, i want to know can't it inherit more then one aspx.cs. If not then why?

View 3 Replies

C# - Settings Properties Of A Child In A Composite Control In An .aspx Page

Feb 28, 2011

I've got a composite control (class) that exposes an asp:Label through a get-property. Is is possible to set the Text property of the Label through aspx-code?

I'd like to do something like this:
<cfw:MyCompositeControl runat="server" Label.Text="Test" />

One solution is adding each property to the composite class (like a public LabelText), but I'd like to set any property of any child control. So as new features of child controls become available, I'd like to be able to use them on my composite control. So basically I would like to set any property of the exposed child control.

View 3 Replies

Web Forms :: How To Access The Page Controls In Static Methods

Oct 4, 2010

How to access the page controls in Static methods.

View 2 Replies

Web Forms :: Access Control On A Page From A Static Method?

Jun 30, 2010

I have a static method and need to get the Textbox text in it. But I get "An object reference is required for the non-static field, method, or property 'Members_ETC_Tab5.TextBox1' " when I use TextBox1.text in the static method so I modified my Method as below

[Code]....

but I see that txtBegin is null. How can this be fxed?

View 12 Replies







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