It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
Is it possible to "auto" next step after X seconds in asp.net wizard? It has specified time for answering question.
One solution might be to use a client-side script to start a timer on page load and then to redirect the page after a set amount of time if no keypress or mousemovement is detected. Take a look at Javascript's setTimeout function for the timing part. And the answer to this question for the part that detects user activity.
Related
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
What does it mean? Where is the problem? It appears when I'm closing my application. Of course I call dispose etc. It happens not always, but only sometimes.
waveOutWrite is a windows API which NAudio is calling and WaveHeaderUnprepared is one of the error codes it can return. Possibly your WAV playback has not quite finished before you close your application. Which callback model are you using?
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I'm trying to do something kind of like chat, but not chat.
The scenario is as following:
3 people: A, B, and C are on the same page
A posts something on that page
B and C sees this posts without refreshing (the page partially refreshes on its own without post back)
There will be some kind of callback using Javascript. A complete sample can be found here: http://www.geekbeing.com/2012/05/18/implement-live-web-chat-part-1
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I want to create a client/server application using C#, and my application must have the ability to deal with time one time passwords, meaning that my server can authenticate a client after a (TOTP) entry.
I searched over the internet for any example that might be close to something like this or thing but coudln't find anything at all.
Do you happen to have an idea about implementing TOTP, even if its not the same situation I have in here , I just need someone to give me some clues.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I have a form as Dashboards. I want to automatically refresh data without the data being read from the database and the user are shown.
What is the best late for this scenario? I did this using a timer, but the best for this scenario is late?
If you want to show data to user but you didn't want to crash your form you can Use background worker or use threads in advanced.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 12 years ago.
How to realize auction expiration? Make it inactive after 1-3-5 days? Something like eBay?
Any links for information would be appreciated,
I have "active" boolean field in my auction table
There's a lot of ways to do this. I think the question was very difficult to understand and that's why you didn't get any answers. Check out this question to see if it gets you on the right track: Best way to run scheduled tasks