How To Send Private Message To Other Users On A Website
May 25, 2010I want to create a system you may have seen on many forum sites where user can send private messages to other users
View 6 RepliesI want to create a system you may have seen on many forum sites where user can send private messages to other users
View 6 RepliesI use membership use to log in users.How to integrate a solution that I can send a private message to a registered users?
View 3 RepliesI have a web site and i want any online users chat with any other user in private mode. it is like facebook chat. is there any free third-party component to use in asp.net web site.
View 1 Repliesiv'e created some code to send email message for all registers users.
[Code]....
How can i avoid displaying the emails list in the user mail (the user can see all the emails address iv'e sent
i have few websites on servers around the world that run a certein function and i want that the site will send the output directly to my computer (no neccessary my computer, it can be my other website that is located in my country, the important thing is that the data will arrive form the site to my location on the globe).
View 2 Repliesi am developing a simple forum in which i want to add messaging activity like Facebook message.
View 1 RepliesI am currently working on an ASP.NET 3.5 and C# web application which deals with users private information like SSN numbers. What are some of the security measures which I need to take from an application development stand point to feel safe?
View 4 Replieshow can I get the private ip of client system from a website hosted on public ip in ASP.Net C#? while i am checking userhostname, it's showing the global IP of the Internet connectivity which is the same for all the machines in the network.
View 2 RepliesI have an asp.net web app that uses forms-based authentication, a SqlMembershipProvider (using an encrypted password format), and a SqlRoleProvider. I need to know if it's possible to administer the users (create new users, assign them to roles, etc.) from a windows application - the powers that be don't want any administrative functionality in the web app itself.
Here is the membership provider definition from web.config:
[code]....
So, obviously, I have a Sql Server database that contains the users and roles for the web app. I'd like to create a separate windows app that references the web app assembly, and use the configured MembershipProvider, RoleProvider, and machineKey to create users, assign users to roles, etc. If that's not possible, I can duplicate the configuration settings from web.config within the windows app. But I don't know how to do this either.
I need to send emails to users from my application at regular intervals.
Condition is: When a user registers to my site a confirmation mail will be send to the user. I have already done it. And if the user doesn't confirm the registration within 12 hours through that confirmaton mail the application must have to send a new confirmation mail to the same user and this should repeat for every next 12 hours until that user confirm the registration.
My Problem: When a user registers a new timer should have to be created for that user for sending emails in intervals of 12 hours. The email sending time for each user is based on his registration time. So we cannot use a common timer for sending mail to users.
i want to send some user information one website(ASP) to another website(ASP.NET)
View 3 Repliesi have a web application hosted on my server.I want to restart the server, how can send an alert Message to my all users that using my web application "Server Restart in 10 Minute please logout"
how should i do it using asp.net (VB as code behind)
I want to generate the url and send it to users via email.I have the following in my Global.asax
[Code]....
I am new to mvc and I would like to use urlhelper to generate the complete url, i.e, http://servername/issue/details/issueID =1234. How can I do that.
I would like to be able to send a notice (New Content) to a user group so if they log into the system or if they are already logged in it would show a message to say there is new content, in addition to this I would like to system to send an email to a user group I have configured smtp in my application asp.net vb
View 2 RepliesI created a contact form that contain name and email and text box to write the user any thing he wanted and i want this email send to an hotmail email and i need the user use any type of email account such as yahoo , hotmail , gmai ,etc
View 7 RepliesHow to send message to facebook user Inbox using ASP.NET 3.5 and C#? I am able to post the messages on walls using fbAPI.Stream.Publish() but i need to send message to inbox need to be personal.
View 1 RepliesI want to create a module that can send a message to another module in different tab.I don't know the target tab Id but I know the target module name. Is there any way to do such a thing?Is Dot net nuke support messaging?
View 1 RepliesI have sent data in a dialog to the controller using the follwing code.
[Code]....
I want to display the error message in the dialog box. How can I do that?
How to send Message between two PC using IP address?
View 1 RepliesI 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?
View 2 Repliesi'm trying to send mass email to all my users. But i cannot send too many email at a time because I would be treated as spam or blacklisted, not just by my own isp, maybe the user's server too.So, initially i was thinking to write a loop and loop through the list of emails and send out batch by batch. But this would require my website to be stay opened until it finish.so, any better suggestion? i'm using my own server to relay the message before sending it out. is there email queining feature in my own mail server?
View 8 RepliesI want to send out an email to all users where their birthday is today. i am using the built-in asp.net (3.5) membership. All users have a profile (stored in aspnet_Profile) which contains a date/time property called 'birthday'. I need to get a list of users email addresses from the 'aspnet_Membership' table where a users birthday is today, along with the users 'firstname' which is string property in the aspnet_Profile table. i would like a list returned preferrably using C# LINQ. i am not sure how to access the birthday property in the profile table, based on the way it is stored in the db table i.e name/value columns
View 3 RepliesHow do I get a list of email addresses from everyone in a particular role, so I can loop through and send them an email from my code behind?
I could do it through it by running a query and filling a data container, but it seems like there should a way through the membership class?
I want to create B'day schedule ...as per birthdate i wnt to send sms ...by using asp.net.......how cna i do ds..?
View 1 RepliesI have a datasource (which is a query) that could run more than 30 secs. I want to show to a user an animated icon (I have it already) while the Gridview is waiting to return data.
I studied several tutorials and textbooks but all just "thoerectically" use a timer to simulate, without much application to real example above. How should I code it in the above real scenario ? In which event handler to put the code and what control (Update panel) to use and any sample code ?