Web Forms :: Monitor The Entire Project Through The Clicks (maintaining Log)
Sep 15, 2010
I would like to monitor the entire project through the clicks. For example if i open a new page and clicking any control it should get monitored like ( User x clicked this many events on this page )
View 1 Replies
Similar Messages:
Oct 18, 2010
I have a producer-consumer scenario in ASP.NET. I designed a Producer class, a Consumer class and a class for holding the shared objects and responsible for communication between Producer and Consumer, lets call it Mediator. Because I fork the execution path at start-up (in parent object) and one thread would call Producer.Start() and another thread calls Consumer.Start(), I need to pass a reference of Mediator to both Producer and Consumer (via Constructor). Mediator is a smart class which will optimize many things like length of it's inner queue but for now consider it as a circular blocking queue. Producer would enqueues new objects to Mediator until the queue gets full and then Producer would block. Consumer dequeues objects from Mediator until there's nothing in the queue. For signaling between threads, I implemented two methods in Mediator class: Wait() and Pulse(). The code is something like this:
Class Mediator
{
private object _locker = new object();[code]....
Inside Mediator I use this.Pulse() every time something is Enqueued or Dequeued so waiting threads would be signaled and continue their work.But I encounter deadlocks and because I have never used this kind of design for signaling threads, I'm not sure if something is wrong with the design or I'm doing something wrong elsewhere ?
View 6 Replies
Feb 6, 2010
Is there a fast way to convert an entire VB.Net project to C# .Net?
View 2 Replies
Mar 25, 2011
This is one thing that's long driven me nuts. Sometimes I want to search the entire project for some string, and about a billion matches occur in JavaScript files, making the search unusable. Is there a way to specify file types to include in the search?
View 2 Replies
Mar 1, 2011
To make divs clickable I use this:
$(".clickable").click(function (event) {
window.location = $(this).find('a').attr('href');
event.preventDefault();
});
I'm using an <asp:Repeater> in asp.NET to create several such <div>s.The problem is that all clicks in the div are picked up by this jQuery - I also have an <asp:Button> inside the div, for this I want to catch the click as normal and process it in the repeater_ItemCommand event - But this doesn't fire - the page just redirects to the href found in the hyperlink in the div.
View 2 Replies
May 26, 2013
my asp net site views are different on 15" monitor than 21" screen.
site layout ruin on 21" screen however it works fine on 15".
View 1 Replies
Jan 17, 2011
I have a small app that is used to register users to the system. I am interested in having a log that will tell me, who - userid that logs in, what they do, how long. meaning, the rows they look at or update. I suppose to make a small table for this logging. lets assume a small table with only 2 columns, timestamp and the userid. It would be good to get some kind of ip address for identity.
the other parts will begood to know and interesting to learn how to code but less critical.
the signon.aspx you can see here. Is this where to code
<%
@
Page
Language="C#"
AutoEventWireup="true"
CodeFile="SignIn.aspx.cs"
Inherits="SignIn"
%>
View 3 Replies
Apr 30, 2010
Our application is on NLB. Now we have functionality where administrator can upload the images, files that user can see. We have two serversserver1 and server2. We are having only one databaseIf user hits the website and NLB directs it to server1 then the uploaded images will get uploaded in server1 only. with the result if user hits the application and it will get redirect to Server2 he will see the data but no image.Platform :ASP.netWindows 2003 server
View 1 Replies
Aug 6, 2010
I'm using SqlDependency to control my cache. I want to use it to monitor several tables (around 10). There should be one SqlDependency per watched table.
Should I create for each of them code like that:
public void CreateDependency_Table()
{
if (connectionStringSettings != null) [code]....
or can I reuse something between them? Like connection?Is this the preferred way of setting multiple notifications?
View 1 Replies
Jan 3, 2011
i have one software in asp.net..once the user login to the software.then only user can acces the desktop and i want to monitor all the the works done by the user in my asp.net software .
View 3 Replies
Jul 18, 2010
I'd like to use WCF to monitor a folder. WCF need to pick up and process the file if there is a file dropped to the folder. Is there a way to do so?
View 1 Replies
Dec 29, 2010
I notice that my generic list is maintaining only one item, i declared it in the aspx.cs page f one of my forms. I am assuming that each time the page is reloaded when I add an item the list is redeclared. How can I stop that?
View 10 Replies
May 25, 2010
i have a problem with maintaining a scroll after postback in grid which consists of number of records with vertical scroll bar,when i click on edit link the scroll is moving to top row but not the current updated record i have used MaintainScrollPositionOnPostback="true" and i placed my grid within div tag but it is not working for my grid
View 6 Replies
Jan 18, 2010
My web parts need to get data from a remote server using TCP/IP. I want to store these application specific settings and allow only an administrator to configure it. Where should these settings be best stored ? I guess these settings could be stored in web.config. I want to avoid manually editing it or build a separate administration application. Could only an administrator only web part edit those settings which could be then available to all the web parts to use ?
View 1 Replies
Dec 21, 2010
Can I objectively determine if my production ASP.NET web application is resetting its application pool? It could be for whatever reason (for example, an error occurred or memory topped off). I don't have direct access to my production servers, so when I want something on the server, I have ask specifically for it like PerfMon counters to run. It is a running IIS 6.0. I understand that I could use PerfMon to catch ASP.NET Application Restarts. If I was not monitoring that PerfMon, is there anything that can tell me the application restarted sometime in the past?
View 2 Replies
Dec 13, 2010
I need to monitor my application from incoming http post and get requestf originating from outside and sometimes inside the machine.
Is this possible?
Been using fiddler but this only does outgoing not incoming (from outside the machine) or have I configured it incorrectly?
This is for my web app that is meant to be receiving a POST from an external server.
View 6 Replies
Feb 6, 2011
I want to have a log file keep rows of who logs in and timestamp. is there a place to do this? And what sort of code is needed?
View 2 Replies
Feb 14, 2010
I have built a web page that does a complex processing, and I realized recently that I need to convert it to a windows service running at the background and keeping the web page for monitoring and initiating the service.
The service will process some files, and provides information messages to the user.
I'm not sure how to implement the link between the windows service and the web site, but i was trying to avoid using MSMQ to connect both application together.
View 1 Replies
Feb 24, 2011
I would like to create a webpage that will be able to monitor if an application (process) is running.
I would also like the ability to start an application (process) if it is not. Where would I even start?
View 4 Replies
Aug 17, 2010
How to maintain selected CheckBoxes' states in different pages inside the Repeater control and list out the selected checkboxes values.
View 2 Replies
Nov 4, 2010
while using gridview whenever I go to edit an item it increases the row size - but this is because I have a multiline textbox as one of the edititemtemplates. It also increases the size of every row to the same size as the one that is being edited. Is there any way to keep the rest of the rows the same initial height and have an increased size just for the row being edited?
View 5 Replies
Mar 1, 2011
have some code which dynamically generates a number of drop down lists to provide the user with different options. The items in these drop downlists contain a value which is a unique id for that particular combination of options and a text component which just plain text but not neccessarily unique. I then have assigned a handler to these dropdownlists which is called on selected index changed to perform the relevant actions based on what options are selected. The problem is to make the system perform the correct action I need the unique ID from selectedValue of the drop down box but when it posts back it appears the selectedValue has been replaced to match the text of the item.
Dim dynDdl = New DropDownList()
dynDdl.ID = "ddlOpts" & i
dynDdl.AutoPostBack = True
AddHandler dynDdl.SelectedIndexChanged, AddressOf dynDdl_selectedIndexChanged
[code]...
View 1 Replies
Nov 27, 2010
I have a List box that displays my Vendors, and then I have a Gridview that shows payments made to those vendors. Is there any way of making the gridview always show 12 rows, regardless if 4 payments were made or even 0 payments have been made ?
View 2 Replies
Feb 23, 2012
How can I resize image through web.config file?while using generic handlers to resize image to upload?
View 1 Replies
Jan 23, 2012
How do I do that with the code?
protected void btnExportExcel_Click(object sender, EventArgs e)
{
Response.Clear();
Response.Buffer = true;
Response.AddHeader("content-disposition",
"attachment;filename=GridViewExport.xls");
[CODE]...
View 1 Replies