C# - Cached Data Accessed By Reference?

May 21, 2010

I am running into an odd problem, and this is the only thing I can think of. I'm storing a list in cache, and I am randomly losing items from my list as users use the site. I have a class that is called that either goes to cache and returns the list from there, or if the cache is over a certain time frame old, it goes to the database and refreshes the cache. So when I pull the data from cache, this is what it looks like....

results = (List<Software>)cache["software"];

And then I return results and do some processing, filter for security, and eventually it winds up on the screen. For each Software record, there can be multiple resources attached to it, and based on how the security goes they may see some, all, or none of the records. So in the security check it will remove some of those resources from the software record.So my question is.... when I return my results list, is it a reference directly to the cache object? So when I remove a resource from the software object, it is really removing from cache as well? If that is the case, is there any way to not return it as a reference?

edit: I think I may have just answered my own question.... so if I do something like this:

results = new List<Software>((List<Software>)cache["software"]);

it will copy the cached list to my results list, correct?

View 1 Replies


Similar Messages:

Forms Data Controls :: Datagrid View Control Producing Duplicate Data Results When Data Is Cached?

Oct 10, 2010

I have a datagridview control that I'm using to display cache data to the end used on a web form. The issue that I'm having is that every time I re-run the application, and the cache data is re-generated... it loads duplicate data that's being displayed to the end user. I can't seem to figure out how to keep this from happening.

What I would like to have happen is that only unique data rows be returned and cached for the end user. Unless there are new data rows on the database that needs to be included in the cache data results...the previous data results should not be duplicated. I've tried to change a few properties on the datagridview control, but nothing seem to keep this from happening.

[code]....

View 3 Replies

Data Controls :: CheckBox Inside GridView Always Checked False When Accessed On Button Click

Mar 10, 2014

There is a Gridview in my web page with select button as below:

<div class="test01" style="height:200px;overflow-y:scroll;overflow-x:hidden" align="center">
<asp:GridView Width="100%" ID="GAsset" runat="server" AutoGenerateColumns="False" DataKeyNames="AssetId">
<Columns>
<asp:BoundField DataField="AssetId" HeaderText="AssetId"/>
<asp:BoundField DataField="AssetName" HeaderText="Asset Name"/>

[Code] ....

When I am selecting any row of Gridview using checkbox and clicking on "Select" button, It is showing ch.checked= false

code is below:

protected void btnSelect_Click(object sender, EventArgs e) {
foreach (GridViewRow row in GAsset.Rows) {
CheckBox ch = (CheckBox)row.FindControl("chkSelect");
if (ch.Checked && ch != null) {
string key = Convert.ToString(GAsset.DataKeys[row.RowIndex].Value);

[Code]....

I also tried debugging my code using break points but it is showing ch.Checked = false everytime, dont know why.

View 1 Replies

WCF / ASMX :: Best Practice For Blocking Requests Until Data Is Cached?

Mar 13, 2011

I have a RESTful webservice. This webservice builds some information (which can take upwards of a couple seconds) and caches the contents.

This works well; however, suppose that many of the same requests come in at about the same time. In our current scenario, each request will build the content before caching. This is obviously not desired as it uses CPU time that could be better served elsewhere. What I would like to do is to suspend/block requests to the same url/cachekey until the content has been built and cached, at which time those other requests will be unblocked and simply fetch the content from cache.

I am not sure the best way. The following are options I have thought about:

Use string.Intern on that cache key and lock. Problem is that this could cause a deadlock if that string is used elsewhere. Use a ConcurrentDictionary and WaitHandle objects to allow other request to lookup in the dictionary if a request is being processed and then "wait" for the request to finish. This would at least give me a timeout capability but I am concerned with the performance of creating many wait handles.

View 2 Replies

Calling Cached Data (in Service Layer) From A MVC View?

Jul 22, 2010

We are adding tooltips to our ASP.NET MVC product, and we are getting the text from our database (technically, from a cached copy of the data). To do so, we created an Html Helper method:

<%=Html.Tooltip(Model.GetTooltipText(Tooltips.ClientPage.StartDateId))%>

The GetTooltipText method is in our BaseViewModel, and simply uses the passed in Id to fetch the tooltip from cache. Would this be considered a bad design? What other alternatives would we have?

View 1 Replies

Web Forms :: Update Cached Data If There Is Any Change In Database

Jun 29, 2012

I want to update my cached data , if there is any change in database. , if any change in database/tables happens then my cached data should be updated.

View 1 Replies

Web Forms :: Clear Cached Data Form Fields Like TextBox

Sep 23, 2012

I have one issue on my localhost running website that is when i submit data from asp.net form . it don't clear the data permanentaly from the page history.like , i submit one record and after this one i double click on the textfields the previous values are shown ?

View 1 Replies

Add Or Update Or Delete Cached Data - Remove The Entire List From The Cache

Jan 17, 2010

U are caching a list of items, then Add or update or delete method called. Approach 1)

A- Do the data change at the database. If success do B, C
B- Remove the entire list from the Cache.
C- Re-Cache the list on first read.

Approach 2)

A- Do the data change at the database, If success do B
B- Do the same change at the cached items, and save more time.

Approach(2) probably will cause nasty difficult to spot bugs, because the data come from BLL and placed directly into cache, One can't assume no bugs will happen at the sproc, I am not worry about database runtime errors, runtime errors will show up, but I am worry about invalid data, or miss calculation. Can I proceed with approach (2) with caution? Is there a "best practice" principle which suggest not doing approach(2)?

View 2 Replies

C# - How To Hide GridView Column When Data Is Accessed Dynamically In Gridview

Feb 25, 2010

I have 2 gridviews they are bind by sqldatasource ,it contains Id , Name and Price

i dont want to show ID coloumn when page is loaded.How to hide it?

View 1 Replies

Check Under Which Account Resources Are Accessed

Jan 25, 2010

Is there a way how I can check programmatically which user is used when my application accesses resources?

I have a production system which only our admin can access. Sometimes it is not clear what part of the system is wrong: Lets say when logging is not working. It is always possible that the web.config is wrong, but sometimes the directory is not accessible. It would make my life easier if I could be sure, that the user is used, that I expected.

View 1 Replies

Detecting If Site Is Being Accessed By A Robot?

Feb 15, 2010

I have some geo targeting code whcih I want to behave in a particular way if the site is being spidered by a robot e.g. google etc.

Is there any way to infer this?

View 4 Replies

JavaScript - Why Are Pages Getting Accessed Synchronously

Mar 3, 2010

I have a Menu page. If a user selects an Menu Item it opens a new IE Window using JavaScript. So user can open different parts of applications in multiple IE Windows. These Windows have the same Session.

My issue is that these pages are accessed synchronously? If one of the child window is waiting for an action to be finished no other request from any other child window is processed. Is it because of using Session variables?

Update: This is only happening to the windows having the same parent. If I have IE child windows from different parent windows then this issue is not there.

View 2 Replies

User Control Cannot Be Accessed By Another CS File?

Dec 13, 2010

There is a UserControlA which was already developed when I joined on a project. It is in a Project which I will call MyProjectWeb and it's namespace is MyProjectWeb.Common.

[code]....

But to my surprise, I cannot create an instance of UserControlB in the same code file in WorkFlowManager. MyProjectWeb.Common namespace does not even contain a UserControlB. When I compile I get obviously get a The type or namespace name 'UserControlB' does not exist in the namespace 'MyProjectWeb.Common' (are you missing an assembly reference?)

Why is that I can reference UserControlA but not UserControlB which are in the same namespace from the WorkFlowManager cs file? If I access the MyProjectWeb.Common namespace anywhere inside the MyProjectWeb, I can see both the user controls. Anywhere to look for errors?

View 2 Replies

MVC :: Error - DataContext Accessed After Dispose

Nov 13, 2010

i am using MVC for my project in the logon authentication, when i login using correct values there is no problem.

If i login using false or empty values i get the DataContext accessed after Dispose error.

i get it in the first line itself 'using (HealthObjectDataContext dc = DataContextFactory.GetDataContext())'

this is the method i use in the security service.

[code]....

View 2 Replies

Enable Database To Be Accessed Through Web Service?

Dec 27, 2010

I am thinking to create a web service for a SQLDB, I have created a simple database with two three tables tbldestination, tblflights and tblbooking.my big problem is how can i enable my database to be accessed through web service?

View 2 Replies

How To Host The Web Application On IIS 7.0 So That 100 People Can Be Accessed Locally

Feb 11, 2010

How to Host the Web Application on IIS 7.0 so that 100 people can be accessed locally.

Request you to provide steps on how to go ahead with it.

View 6 Replies

Configuration :: Intranet Page Can Be Accessed Over The Internet

Aug 12, 2010

I am running a test page on a local server that I want only to be available to comouters that are running on the LAN. However, My web page can be accessed over the internet, how can i stop this?

The page is running on a Windows Server 2003 pc using IIS 6.0

View 3 Replies

Static Variables To Be Accessed Across Multiple Instances

Feb 17, 2010

is there any way to stop share the static variable at multiple users....I need to create a new insatnce of static variables or not accessing the same static variables across multiple who are using the same site.....while googling i found like hisSystem.Threading.Interlocked.Increment(ref MyClass.InstanceCounter); by using can I do....or is there any other way to stop accessing the static variables accross multiple instances of my site......and in my scenario i cannot use rely on session variable also

View 2 Replies

C# - User Controls Registered But Cannot Be Accessed Via Code Behind

Jul 17, 2010

I am finding it quite awkward. I have registered the user controls and they are actually being parsed as I can view the controls I have placed on them. Problem is that I cannot access them in code behing. Even when I place them, their tags are not represented in the intellisence drop down. What could be causing this? I am placing them on a page residing in a master page setting. The controls are declared on the child page.

View 2 Replies

C# - Controls On Aspx Page Can't Be Accessed From Code-behind?

Dec 5, 2010

i have the following problem: i work in web application and only today. any control i put on the page, when trying to access it from behind code. it doesn't appear at all. what are the probabilities and reasons for this problem. note:i work from a thin client. they make some maintenance on their server today. and after that i find this problem.

the previous controls on my page can be accessed normally with out any problems.

View 4 Replies

Web Forms :: Global Method That Can Be Accessed Anywhere In Whole Project?

Feb 25, 2016

how to make a method as global method so that i can call it anywhere in application without referring  any class

namespace SomeNamespace
{
public static class SomeClass
{
public static string SomeMethod()
{
...
}
}
}

used methods:

1.string x = SomeNamespace.SomeClass.SomeMethod();

2.using SomeNamespace;
string x = SomeClass.SomeMethod();

What i Need is :

somemethod();

View 1 Replies

Security :: .aspx Files Being Accessed By Wrong Account?

Jul 14, 2010

Have I done something wrong ?I am running a web-site with simple .aspx files on a standalone workgroup Windows Server 2008 called 'Max'.I had assumed that the .aspx files were accessed by the 'Network Service' account.The application pool for the website is running with 'Network Service' as the process account.I was puzzled, since 'Network Service' had no permission on these .aspx files, and I coudln't understand how these files were being accessed at the file level.So I added event level auditing to the files, and I was suprised to learn that the .aspx files were being accessed by an account called Max$ (ie the computer account).Is this correct ?Why is the Network Service account not being used ??

View 11 Replies

Access :: Application Fails When Accessed By Multiple Users?

May 14, 2010

We have created an ASP application with MS Access as back end. We have implemented this web application on our server machine and accessed the same from on my local machine.

Our application works fine when only one user accesses it (All insert, update works fine). But when multiple users connect to this application and try to update the database, then application get crashed. As per our knowledge, this is happening because of access database get locked, when one user open it in exclusive mode.

View 2 Replies

Web Forms :: Dropdownlist Control Inside Loginview Cannot Be Accessed

May 14, 2010

i am getting this error "A control with ID 'NewAssignTL' could not be found for the trigger in UpdatePanel 'UpdatePanel'. " i have 2 problems i cannot access my dropdownList control from code behind and i triggers cannot access the control.

my.aspx page

<asp:LoginView
ID="LoginView1"
runat="server">
<RoleGroups>
<asp:RoleGroup
Roles="Administrator">
<ContentTemplate>
<asp:DropDownList
ID="NewAssignTL"
runat="server"
AutoPostBack="True"
ToolTip="Select
team leader name"
DataSourceID="SqlDataSource1"
DataTextField="Description"
DataValueField="GroupID"
/>
<asp:SqlDataSource
ID="SqlDataSource1"
runat="server"
ConnectionString="<%$
ConnectionStrings:ApplicationServices %>"
SelectCommand="SELECT
GroupID, Description FROM aspnet_Groups WHERE (Active = 'True')">
</asp:SqlDataSource>#
</ContentTemplate>
</asp:RoleGroup>
</RoleGroups>
</asp:LoginView>
<asp:UpdatePanel
ID="UpdatePanel"
runat="server"
UpdateMode="Conditional">
<ContentTemplate>

my gridview is here

<Triggers>
<asp:AsyncPostBackTrigger
ControlID="NewAssignTL"
EventName="SelectedIndexChanged"
/>

View 3 Replies

State Management :: How Many Pages (with Names) Are Accessed By User In Website

Apr 13, 2010

How to get that how many pages accesses by a user in a website.

Actually, rather then putting code in each page I want some generalized method/technique that if user Logged to a website and during his Login period what was his activity and which page(s) he accesed.

Note:

1. My website pages are under MasterPage.
2. MasterPage has a MasterMenu.
3. For singlePage activity I used Page.GetType.Name

View 2 Replies







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