I am working on a ASP.Net Web Application which need some requirement as given below. Let's say two user's A and B. When a User A Assign a task to B , Then B need to get some sort of alert message without doing any action by B in his web browser, which need to tell User B that user A had assigned him some task and he need to response back to User A at the same time by and acknowledgement saying he accepted the task or rejected. Here I can not use the Mail server feature. Here user B need to get the pop up/alert message at the same time when user A posted the Task.
my web application has more than one user with unique usercode. As soon as a new record is inserted into the database with some usercode, i want to show a popup only to that user in his browser window. for example insert into mytable(usercode) values(1431) is inserted into my databasetable.if user with usercode 1431,1435 are loggedin. i want to show the notification only to the user with usercode=1431
how to write a code for Sending an email notification to the user.. I work to create conference managment system that content papersubmission when researcher upload his research(in my page I have using file upload control for uploading pdf)my work after uploading the file I need to sent an email(this mail body contain the link to the page where pdf uploaded )to the reviewer that he must notice that the pdf has uploaded and commented on it. this email notification should come from admin.
Can any body tell me how can i perform searching in the asp.net website when a user enter searching word in a text box i want to search in whole website that entered word. am using vb.net as code
I'm looking to write some script that checks that: The current user of whom is logged in has the correct authority credentials. NB: Script in C# before I continue. To give a bit more background. The SQL DB Table for AdminUsers has a field 'Authority' this is linked to another table (Authority) which has the values/different levels of authority in them. Thus, if aN admin user whose Authority level is just listed as 'user', for example, in the database and wants to edit information that requires 'Supeuser' authority level - it cannot be performed and is redirected to another page. In detail, my particular page, the operation is being done via a ASP Button within a ASP Repeater. Of each record that occurs there is the button that, once pressed, updates the field in the database (in this case for a Guestbook table which has a 'Moderated' field of 'bit/bool' data type, changing it from false to true (or 0/1)). To allow that entry to be displayed on the front-end for public viewing. All this can onyl happen on the basis of, as previously stated, their authority is of the appropriate level. Here is what my attempt was. The outcome of which simply redirects to the 'Unauthorised' page, despite the user logged in having the correct authority credentials.
I have a web application which our customer use it all day. Some times, i need to stop or restart application. When I do it, some customers' work is interrupted and I want to make a notification system that, appear on application and inform customers about shutting down of system.How can I make a system like that?
using Ajax control toolkit or using Jquery? What I am looking at is when ever someone places an order and admin of my team is logged-in to the application,
he must get real time updates about the order (the moment order is placed, a pop up must come on his sceen). I want the best user exprience.
I am creating an online registration but my problem is when they finish registration, it will automatically send the notification to their email and when they click the link it will activate their account.. I don't know how to do this is in asp.net ....
I am creating a chatting application, where I want to show typing notifications in private chat.i.e If two users are chatting, when the user is typing message I want to show in chat window of other user that "userName is typing" in the status bar
I have this code to send email notification in my page.
MailAddress to = new MailAddress("xxxxx@gmail.com"); MailAddress from = new MailAddress("xxx@gmail.com"); MailMessage message = new MailMessage(from, to); message.Subject = "Error Occred in the application:"; message.Body = ex.Message; SmtpClient client = new SmtpClient("smtp.gmail.com", 587); client.EnableSsl = true; client.Credentials = new NetworkCredential("user", "password");
Is there any other way we have without giving credentials to send the message?
I need to design a bug alert system, where the web support team is notified via email when a user of our website encounters an error of any sort (database exception, or a 404)What would be the best way to design this section of the project?
I have a hosted Silverlight 4 application. My task is to notify a Silverlight user when his ASP.NET session is about to expire with a simple dialog box, saying something like "Your session is about to expire, would you like to reset the session?" with two buttons [Yes], and [No]. When the user clicks [Yes] I would like to update the ASP.NET session, otherwise I would just let it expire. What is the best methodology to use here?I've taken a look at different forums, and most people just simply poll the server every-so-often from the page hosting the Silverlight application. This wouldn't do for me. I thought of creating a singleton DispatcherTimer that would start on Silverlight application startup, would fetch Session.Timeout value from the server using WCF and would run for (Session.Timeout - some delta) minutes. When the timer expires it would pop the notification window. Moreover, since this notification window should only pop after a period of inactivity, I'd like to reset this timer every time a WCF call is performed (which essentially defines activity).P.S. I'm also planning on doing something similar for Forms timeout.
I need to send notification emails to specific users at different times, Can this be done in the Global.asax page using vb? Also will i have to upgrade my Database from sql express to standard?
I want to make taskbar notification as like yahoo messenger or other messenger. When new message will come, from the taskbar small notification will appear as when new email come, yahoo do the same.
How I can make small taskbar notification in web application using asp.net?
I want to notify if there is new record has come then from the taskbar notification will appear and after may be 2 minute it will be automatically disappear as like yahoo do.
So I've just inherited an application which used the SQL Dependency function associated with SQL Notification Services in order to perform some functionality whenever one of the tables in the DB was changed. Specifically I have an MVC website - in the global.asax file there was a listening function which updated the route constraints whenever a table was changed, based on the data changes.
Unfortunately we've also migrated to SQL Server 2008. Now, I can't get this functionality to work at all. As far as I can make out it has actually been removed in SQL Server 2008 although, annoyingly, it does sometimes seem to fire when it errors. Which confused me for a bit, but it would seem that the service is no longer available.
I took a look at StreamInsight but it seems like a sledgehammer to crack a nut, frankly. Plus I'm more than a little suspicious that support for it might be removed going forward, just like support for Notification Services was. The simplest approach is simply to schedule a console application to do the work every 5 minutes or so, but immediate updates would be hugely preferable, and I'm not sure how easy it would be to get a command-line application to update something as fundamental on a website as the routing.
I need to send an email to notify students that their choices have been approved or disapprove.For example. When a teacher approved or disapprove a particular student choices on the DropDownList in a DetailView it will automatically send the student an email to notify them that the choices had been approved/disapprove. I need to grab the Student Email, ProgramName, student name in the DetailView so the email will be shown like this:
If you have seen facebook, whenever someone post on your wall you get a small notification to inform you about the post. How can I implement the same either using Ajax control toolkit or using Jquery? What I am looking at is when ever someone places an order and admin of my team is logged-in to the application, he must get real time updates about the order (the moment order is placed, a pop up must come on his sceen). I want the best user exprience.
I'm facing a senario in which I want my logged in users can send requests to each other(Request generally is official request like request for resources, etc.).
And other user can get notification for new request(But this is not about e-mail notification).I want to use ajax. I have no idea how to start with. Please somebody help me with this. Simple example will be great to start with.
I am wondering how is the real-time notification in facebook achieved? What kind of technologies are required?
Another question: I have a asp.net website and a back-end processing software. I want the back-end processing software to comunicate with the website so that the website can dynamically update the page. I am thinking that web service may be the solution. Is this right?