Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I am working on a website that displays information about an application in C#.
What I would like to achieve is that whenever someone for example click a button in the application the website adds 1 to button clicks.
How would I achieve this?
If you are not looking to build something totally from scratch, you could look into using googles measurement protocol. Although it does not allow the collection of user specific data, tracking button clicks or other application actions is what it's meant for.
https://developers.google.com/analytics/devguides/collection/protocol/v1/
The measurement protocol will take care of the data collection and storage of your application events and the data could be viewed using the standard Google Analytics interface; helpful for testing. Then if you wanted to display the collected analytics on your custom website you could use the reporting api.
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 days ago.
Improve this question
I am currently in college doing a project for a business of my choice where I want to create a modern calendar scheduler app using .NET 4.7.2 in C# and I cannot do it I have tried to search for videos and find APIs but none of them seem to work for me. An example of what I desire is below:
I have currently tried to watch a tutorial which works up till the point where i need to add the user control to all of the panels inside the flow layout panel. Ideally i would like to workout how to fix this issue but if there is a simpler more efficient option then id happily do it. Also any help on how to make the user control apply to all panels inside of the flow panel would be greatly appreciated.
Edit: I would also like to add the final project cannot use any paid services such as a VPS and must run everything on a windows 10 desktop. I do not mind if i have to pay my own money for an API or something similar i just cannot run it through a server
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 days ago.
Improve this question
I'm trying to create a c# program that automates operations on IMDb (looks up a title and then adds it to a user's private list). I'd prefer to use c# because this last part of a program that also does other operations, but if it should be too difficult I might also be forced to use another language (python). As said before I really would like to use c# but I really don't know where to start, from what I understand I should use the "tags" in the html page, but I'm open to suggestions on how to proceed
site: https://www.imdb.com/
I tried to use a Chrome extension to parse the page and find the way to choose the right html button but i don't know how to go about it (i'm just a beginner in c# and i wanted to learn something by doing this little project)
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I want to understand on a conceptual level how information travels from the Database(Microsoft SQL) to the Frontend with C# & ASP.Net . I have not had much luck finding examples or diagrams which address this concept in a clear way. One example could be sending the string "Hello I am a string stored in the database & now I appear on this front end web page", It does not have to be specific to these languages, although if it is that would be great. Ultimately, I want to understand what are the components involved and how do they communicate information back and forth.Any articles,videos or diagrams that you feel of importance are also highly valued, thank you for your time.
Here's a diagram. I hope it helps.
An overview could be like:
User sends request to web server through client i.e. browser
Web server queries database
Get query results
Generates HTML (if results found)
Send back to the browser
Browser displays on the screen
Every step has details but it is an overview, hope makes some sense.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I am a novice software developer and I am building desktop applications using C#. I want to make my applications expire and generate a license file to activate the application after it expires. Meaning I want to include a time bomb to all my applications and detonate it by using the generated license file.
There are many ways to achieve this - the .NET-Way is described here in this MSDN-Article:
How to: License Components and Controls
If you are developing a windows 8 app and you want to find out a way to create a trial version of your app then I think the following article does a pretty good job of explaining how to do it.
http://msdn.microsoft.com/en-us/library/windows/apps/hh694065.aspx
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
Hope everyone is well.
I am dealing with a multiplayer system and having a problem with the real time refresh. I've tried, metatags, JS function:set intervals for a div, Ajax refresh based on success,.... They all work on that particular screen.
So example if Jack, Barney, Nick and Mary are online playing this game.... When Mary plays, her screen will refresh/update divs accordingly.... However on the other 3 player's screens nothing will happen.
I need a REFRESH/UPDATE of a div to take place when a click is made by any user, this refresh/update must happen ON MULTIPLE SCREENS (any user who is on that page must be able to view the most recent and up to date set of data)
If you have any information on how to go about doing this, please let me know! :)
In other words, you need the server to notify clients of events. With ASP.NET, you should use SignalR for that. It uses the modern WebSockets API if available, and gracefully falls back to other techniques like polling in browsers that don't support WebSockets.
You can find a good example of SignalR 2 using with MVC 5 here:
http://www.asp.net/signalr/overview/signalr-20/getting-started-with-signalr-20/tutorial-getting-started-with-signalr-20-and-mvc-5