473,387 Members | 3,033 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

sending messages from the server over the network to another machine

Guys,

I would like a notification module for my simple ASP application.
What i want to do is simple & as follows,

1). When the user adds some data into the system (VB.Net on the server side
of my ASP.Net application will handl this processing), then i want to send a
notification over the network to a particular computer (PC).

Basically what i need is to be able to send a message across the network
using VB.net.

Best Regards,

Thilaka
Nov 18 '05 #1
7 1585
why not try send mail?

"Paul Wilson" <pa**@dummyemailaddress.com> дÈëÏûÏ¢ÐÂÎÅ
:Ou**************@TK2MSFTNGP11.phx.gbl...
Guys,

I would like a notification module for my simple ASP application.
What i want to do is simple & as follows,

1). When the user adds some data into the system (VB.Net on the server side of my ASP.Net application will handl this processing), then i want to send a notification over the network to a particular computer (PC).

Basically what i need is to be able to send a message across the network
using VB.net.

Best Regards,

Thilaka

Nov 18 '05 #2
What kind of message do you want to send ? Instant messaging, mail ?

Patrice

--

"Paul Wilson" <pa**@dummyemailaddress.com> a écrit dans le message de
news:Ou**************@TK2MSFTNGP11.phx.gbl...
Guys,

I would like a notification module for my simple ASP application.
What i want to do is simple & as follows,

1). When the user adds some data into the system (VB.Net on the server side of my ASP.Net application will handl this processing), then i want to send a notification over the network to a particular computer (PC).

Basically what i need is to be able to send a message across the network
using VB.net.

Best Regards,

Thilaka

Nov 18 '05 #3
Instant Messaging.

(done in win 2000 & above using "NET SEND" in the comman prompt & WinPopUp
in Win98)

"Patrice" <no****@nowhere.com> wrote in message
news:Ot*************@TK2MSFTNGP10.phx.gbl...
What kind of message do you want to send ? Instant messaging, mail ?

Patrice

--

"Paul Wilson" <pa**@dummyemailaddress.com> a écrit dans le message de
news:Ou**************@TK2MSFTNGP11.phx.gbl...
Guys,

I would like a notification module for my simple ASP application.
What i want to do is simple & as follows,

1). When the user adds some data into the system (VB.Net on the server side
of my ASP.Net application will handl this processing), then i want to

send a
notification over the network to a particular computer (PC).

Basically what i need is to be able to send a message across the network
using VB.net.

Best Regards,

Thilaka


Nov 18 '05 #4
For this i need an SMTP server & all of that nonesense...
I dont want it to be too complicated (as this application is for
internal-office use only)
(not a professional application for clients).

Thanx a lot for the suggestion though.

"Tim.Guo" <gu******@163.com> wrote in message
news:OL**************@TK2MSFTNGP10.phx.gbl...
why not try send mail?

"Paul Wilson" <pa**@dummyemailaddress.com> дÈëÏûÏ¢ÐÂÎÅ
:Ou**************@TK2MSFTNGP11.phx.gbl...
Guys,

I would like a notification module for my simple ASP application.
What i want to do is simple & as follows,

1). When the user adds some data into the system (VB.Net on the server side
of my ASP.Net application will handl this processing), then i want to

send a
notification over the network to a particular computer (PC).

Basically what i need is to be able to send a message across the network
using VB.net.

Best Regards,

Thilaka


Nov 18 '05 #5
please use:

Process.Start("d:\WINNT\system32\CMD.EXE", "/c net send <computername> " &
"new info added" )

you might have to replace path to cmd.exe and <computername> with computer
name you wish message to be sent at.

--
Hope this helps,
Zeeshan Mustafa, MCSD
"Paul Wilson" <pa**@dummyemailaddress.com> wrote in message
news:uR**************@tk2msftngp13.phx.gbl...
Instant Messaging.

(done in win 2000 & above using "NET SEND" in the comman prompt & WinPopUp
in Win98)

"Patrice" <no****@nowhere.com> wrote in message
news:Ot*************@TK2MSFTNGP10.phx.gbl...
What kind of message do you want to send ? Instant messaging, mail ?

Patrice

--

"Paul Wilson" <pa**@dummyemailaddress.com> a écrit dans le message de
news:Ou**************@TK2MSFTNGP11.phx.gbl...
Guys,

I would like a notification module for my simple ASP application.
What i want to do is simple & as follows,

1). When the user adds some data into the system (VB.Net on the server

side
of my ASP.Net application will handl this processing), then i want to

send
a
notification over the network to a particular computer (PC).

Basically what i need is to be able to send a message across the network using VB.net.

Best Regards,

Thilaka





Nov 18 '05 #6
excellent.
Just what i was looking for.

"M. Zeeshan Mustafa" <ze*****@no-spm.please.zeeshan.net> wrote in message
news:OX**************@TK2MSFTNGP10.phx.gbl...
please use:

Process.Start("d:\WINNT\system32\CMD.EXE", "/c net send <computername> " &
"new info added" )

you might have to replace path to cmd.exe and <computername> with computer
name you wish message to be sent at.

--
Hope this helps,
Zeeshan Mustafa, MCSD
"Paul Wilson" <pa**@dummyemailaddress.com> wrote in message
news:uR**************@tk2msftngp13.phx.gbl...
Instant Messaging.

(done in win 2000 & above using "NET SEND" in the comman prompt & WinPopUp
in Win98)

"Patrice" <no****@nowhere.com> wrote in message
news:Ot*************@TK2MSFTNGP10.phx.gbl...
What kind of message do you want to send ? Instant messaging, mail ?

Patrice

--

"Paul Wilson" <pa**@dummyemailaddress.com> a écrit dans le message de
news:Ou**************@TK2MSFTNGP11.phx.gbl...
> Guys,
>
> I would like a notification module for my simple ASP application.
> What i want to do is simple & as follows,
>
> 1). When the user adds some data into the system (VB.Net on the server side
> of my ASP.Net application will handl this processing), then i want
to send
a
> notification over the network to a particular computer (PC).
>
> Basically what i need is to be able to send a message across the

network > using VB.net.
>
> Best Regards,
>
> Thilaka
>
>



Nov 18 '05 #7
Thanx for the solution

"M. Zeeshan Mustafa" <ze*****@no-spm.please.zeeshan.net> wrote in message
news:OX**************@TK2MSFTNGP10.phx.gbl...
please use:

Process.Start("d:\WINNT\system32\CMD.EXE", "/c net send <computername> " &
"new info added" )

you might have to replace path to cmd.exe and <computername> with computer
name you wish message to be sent at.

--
Hope this helps,
Zeeshan Mustafa, MCSD
"Paul Wilson" <pa**@dummyemailaddress.com> wrote in message
news:uR**************@tk2msftngp13.phx.gbl...
Instant Messaging.

(done in win 2000 & above using "NET SEND" in the comman prompt & WinPopUp
in Win98)

"Patrice" <no****@nowhere.com> wrote in message
news:Ot*************@TK2MSFTNGP10.phx.gbl...
What kind of message do you want to send ? Instant messaging, mail ?

Patrice

--

"Paul Wilson" <pa**@dummyemailaddress.com> a écrit dans le message de
news:Ou**************@TK2MSFTNGP11.phx.gbl...
> Guys,
>
> I would like a notification module for my simple ASP application.
> What i want to do is simple & as follows,
>
> 1). When the user adds some data into the system (VB.Net on the server side
> of my ASP.Net application will handl this processing), then i want
to send
a
> notification over the network to a particular computer (PC).
>
> Basically what i need is to be able to send a message across the

network > using VB.net.
>
> Best Regards,
>
> Thilaka
>
>



Nov 18 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

15
by: Sven Templin | last post by:
Hello all, our configuration is as following described: - OS: Windows 2000 - Apache server 1.3 - Php 3.8 - MS outlook client 2000 _and_ no SMTP server available in the whole intranet.
1
by: DaleMan | last post by:
I'm looking for some help on how to dial a phone number in my application and send a text message to the portable machine that answers the call (cell phone, Palm, etc..). Anyone know of any sites...
1
by: bivin | last post by:
hai i am requesting your technical support. please help me. i have been working with this for five days. the problem is relating with the smtp. i am trying to send an email from the asp.net...
7
by: John Bailo | last post by:
I wrote a c# web service that sends an XmlDocument as a return type. When I run it on a w2k iis machine, it takes 35s to 45s to send the data to a client (I wrote a smart client c# app to consume...
8
by: Mike Owen | last post by:
Hi, I am using the following code to send email on a Windows 2003 Web Server: Imports System.Net.Mail ........ Dim msgmail As New MailMessage msgmail.To.Add(New...
8
by: Robert Dufour | last post by:
Dim message As New MailMessage("mymail@mydomain.com", "mymail@mydomain.com", "Test", "Test") Dim emailClient As New SmtpClient("localhost") emailClient.Send(message) The IIS server is...
8
by: Frank Millman | last post by:
Hi all This is not strictly a Python question, but as the system to which relates is written in Python, hopefully it is not too off-topic. I have an accounting/business application, written in...
6
by: Jack | last post by:
Hi, I am still new to .NET so, i'm sorry if my question is a bit too simple :-) I would like to know what is the "best-practice-way" of sending email from asp.net (VbScript). I want to make a...
7
by: undbund | last post by:
Hi I am creating a newsletter system. The software should run from desktop computer (localhost) but be able to send email to anyone on the internet. Can you guys give me some ideas on how to...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.