I have a website written in C# and when a user does something I want to be able to send an IM message to an admin and allow the admin to respond to approve/deny the request.
I would like to use something like MSN Messenger or AIM so that the IM messages can also be sent to phones as sms.
I have create a website and i need to send/receive email from website . I am able to send email through system.net.mail namespace . But it needs an gmail id and password . I want to send email from my website like Username@mywebsite.com and also receive email from another domain like gmail.com . I didn't know how i can perform this task . I don't have a logic .
condition : server = asp.net FW3.5 .... Client = just and just htmls (no server control /no runat ="server" att)
i open a ajax request from browser and that is ok problem:
1. in case above a page_load happend on server we all know that, but i cant determine is it asynchorus load or normal load 2. as response of that AJAX call i can't use response.write() cause it will redraw entire page not just a portion
In Litle Details: suppose i there is a <div id = ....> on client page, i just need to send a table, after that javascript will put that under the div. and response write can't do this cause it send xml for entire page not for just tha table.
I wanted to send and receive SMS from my application, as of the need i bought a Wavecom GSM Modem. I also downloaded ActiveXperts Toolkit for communicating with GSM Modem, i can be able to send SMS through the GSM Modem. have problem with receiving SMS.
I'm completely blanking here. I've got 2 servers that cannot talk to each other via normal network traffic (like just copying a file). I can't get FTP setup on either server due to artificial company security constraints.Server1 basically just has an exe on it that I have written, and it needs to send a file to Server2.Server2 has a full blown asp.net website on it so I'm writing a .ashx page to handle receiving the file.So...Server1 needs to make a call to server2 and send a file to it over http. Server2 needs to accept the file and save it to disk.Where should I start? I know I can make server1 create a WebRequest object, and set the methodto POST, and then stream the content.But on server2, what am I supposed to write? A generic handler? Will my file that I send be part of the context.Request object? How do I get it out?
I wish to make a script which programatically send the POST data to one server and then the other server receive the POST message and retrieve the information. How should make this work? I already successfully write the sender site, the code as follow:
string postData = "id=0&co=5"; ASCIIEncoding encode = new ASCIIEncoding();
I am using the System.Timers.Timer class. And I enable when I send a message and disable when I receive the message. How do I calculate how much time has elapsed. I have set the interval as 1 sec
Basically I retransmit data after 1000 sec again if I do not recive an ACK. I retransmit 5 times max until I get a Ack. If I receive and something before 150ms then I stop retrnsmission.
I need to send a cookie to the my web site's visitors and receive them back for information. For example when machine1 visits my site if not set I set a cookie with "user1", for machine2 I set "user2" etc.
Actually I need to retrieve the cookie back from my log file, so I thought if I do this it will be saved to my log file.
as per my flow on every click i have a postbackĀ without which i cannot store data to client or server.i have 2 ways of data storing one is client side in javascript variables in form of array(which can be lost on postback) the data to be stored are of differnt types some are numeric , some single characters some sepearted with comma other way is on each post back save the data in a session varibale on server & then access currently i have second way considering both the ways and in accrodance with the current flow which is best for maintenance & access speed reasking as i am notyet cleared abt the things.
I have 2 website on my IIS which have the same physical location on disk. Example:
www.xxx.com path on disk : c:wwwxxx.com img.xxx.com path on disk : c:wwwxxx.com
I want that img.xxx.com only response for static files like images, css and js files.
My main goal is to serve static files from a cookieless domain (using img.xxx.com for cookieless requests). But if I write img.xxx.com to browser i see the same content with www.xxx.com. I want to block all request to img.xxx.com except images, css and js request.
I don't want to set another folder for img.xxx.com because it is very hard for me to change all images url to new url.
Web developer newbie question (I am otherwise fluent in C#!):
I need to set up a web site (ASP.NET/C#) that can receive XML posts via HTTP. I haven't the first clue of where to start. Create web site? Web page? Web service? WCF? Can you self-host it, or must it be on IIS? How/where do you catch the post event?
I have developed simple user registeration application form in that after press submit button i am sending mail to user for welcome template as well as i am also get on mail for user details like name email id, and ip address.my problem is the user can receive the mail form my site but i am receive the any user details mail it doesnot shows any exception what is the problem i donno please
i want to send sms to mobile from asp.net web Application. i am using this but its not working. is there any other free webservice which i can use to implement this.
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).
I am getting this error when I am trying to send e-mail on my website. I Have My web.config settings but I am getting it in a server. In a different one I am not getting it.
I am trying to implement a "send newsletter" process that works like this: -
1. The author develops a newsletter using Word.
2. When they are ready to distribute it, they save it as HTML, and upload this to the web site. It is then viewable with the appropriate URL.
3. They then distribute it with a web process that uses SendMail.
I have two problems: -
1. When you "Save as web page (*.htm, *.html)" from Word, the document is saved as .htm, and if there are any graphics within the document they are saved in a separate "*_files" folder. How do I upload this folder to the web site?
During testing I'm fudging this by uploading the folder with FTP, but of course this is not a viable solution for users.
2. I can send the email using alternate views, but the htmlview lacks the graphics. My logic reads the uploaded .htm document into a string variable called "HtmlBody", and then
code]....
This all works perfectly except that the email arrives just a graphic symbol and blank space where the graphic should be. How do I either send the graphics with the email, or (better) send it with references to the graphics back on the web page. The html that I am sending out contains references to the graphics like <v:imagedata src="./FamNet%201%20July%202010_files/image001.jpg" o:title="NZSGFamNet"/>, which is looking in a subfolder from the folder containing the html. I suppose that if I could solve the first problem I could replace the "./" in the image reference to [URL]. This would not be too difficult, as I could recognize "FamNet%201%20July%202010" as the newsletter name and so look for the string"./" & NewsletterName & "_files". However somebody might be able to suggest a more elegant solution, provided that I can solve the first problem.