Click here to Skip to main content
15,906,816 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: gridview calculations in java-script Pin
N a v a n e e t h30-Oct-07 0:23
N a v a n e e t h30-Oct-07 0:23 
Questionhow to capture user IP address and location Pin
ngrj29-Oct-07 22:45
ngrj29-Oct-07 22:45 
AnswerRe: how to capture user IP address and location Pin
InsDev29-Oct-07 23:04
InsDev29-Oct-07 23:04 
AnswerRe: how to capture user IP address and location Pin
Sandeep Akhare30-Oct-07 0:35
Sandeep Akhare30-Oct-07 0:35 
Questionsaved records should be visible in the same gridview (Which saves the data) Pin
subbu.sk29-Oct-07 22:40
subbu.sk29-Oct-07 22:40 
AnswerRe: saved records should be visible in the same gridview (Which saves the data) Pin
InsDev29-Oct-07 22:54
InsDev29-Oct-07 22:54 
QuestionUnable to attach the code to debug(Urgent Please) Pin
buzzvishwanath29-Oct-07 22:40
buzzvishwanath29-Oct-07 22:40 
AnswerRe: Unable to attach the code to debug(Urgent Please) Pin
Christian Graus29-Oct-07 22:59
protectorChristian Graus29-Oct-07 22:59 
GeneralRe: Unable to attach the code to debug(Urgent Please) Pin
buzzvishwanath29-Oct-07 23:20
buzzvishwanath29-Oct-07 23:20 
QuestionHow to access session value using Java Script Pin
sjs4u29-Oct-07 22:37
sjs4u29-Oct-07 22:37 
AnswerRe: How to access session value using Java Script Pin
kalyan.n@dsolusys.com29-Oct-07 23:29
kalyan.n@dsolusys.com29-Oct-07 23:29 
AnswerRe: How to access session value using Java Script Pin
John-ph29-Oct-07 23:34
John-ph29-Oct-07 23:34 
Questionprob. in datagrid paging Pin
findtango29-Oct-07 22:31
findtango29-Oct-07 22:31 
AnswerRe: prob. in datagrid paging Pin
N a v a n e e t h29-Oct-07 22:47
N a v a n e e t h29-Oct-07 22:47 
Questionhow to find record count Pin
ps.srinivasan29-Oct-07 22:21
ps.srinivasan29-Oct-07 22:21 
AnswerRe: how to find record count Pin
Abhijit Jana29-Oct-07 22:26
professionalAbhijit Jana29-Oct-07 22:26 
Questionparameter passing i javascript [modified] Pin
Sonia Gupta29-Oct-07 21:59
Sonia Gupta29-Oct-07 21:59 
AnswerRe: parameter passing i javascript Pin
InsDev29-Oct-07 22:48
InsDev29-Oct-07 22:48 
AnswerRe: parameter passing i javascript Pin
Shujaat Ullah Khan29-Oct-07 22:55
Shujaat Ullah Khan29-Oct-07 22:55 
AnswerRe: parameter passing i javascript Pin
Christian Graus29-Oct-07 23:04
protectorChristian Graus29-Oct-07 23:04 
AnswerRe: parameter passing i javascript Pin
Imran Khan Pathan29-Oct-07 23:28
Imran Khan Pathan29-Oct-07 23:28 
QuestionMessage Send Pin
SreejithAchutan29-Oct-07 21:56
SreejithAchutan29-Oct-07 21:56 
AnswerRe: Message Send Pin
Abhijit Jana29-Oct-07 22:10
professionalAbhijit Jana29-Oct-07 22:10 
AnswerRe: Message Send Pin
Ghazi H. Wadi29-Oct-07 22:17
Ghazi H. Wadi29-Oct-07 22:17 
below is written in asp ( (C)opyright 2001 - Robin Paardekam)
however you modify to meet needs.
<br />
<%@ LANGUAGE = VBScript %><br />
<br />
<%<br />
 ' Sending a message using NET SEND on a Windows NT network<br />
 ' (C)opyright 2001 - Robin Paardekam<br />
 ' Nice script to embed on your intranet. Send a message to any user<br />
 ' on a network using your browser (!)<br />
 ' More scripts like this can be found at http://www.paardekam.nl<br />
<br />
 'Checking for all necessary variables. <br />
         Msg = TRIM(Request.Form("Msg"))<br />
         NamUsr = TRIM(Request.Form("NamUsr"))<br />
         Computer = Request.ServerVariables("REMOTE_ADDR")<br />
<br />
         if Msg <> "" AND NamUsr <> "" THEN<br />
                      'Sending the message<br />
                       Response.Write "<P>Sending message to " <br />
                       Response.Write "" & NamUsr & ": " <br />
                       Response.Write Msg & "</P>" <br />
                       Set server_shell = Server.CreateObject("wscript.shell") <br />
                       server_shell.Run "%comspec% /c net send " & NamUsr & " [FROM:" & Computer & "] " & Msg <br />
                       <br />
           ELSE<br />
                       'Displaying the form %><br />
                       <FORM NAME="Vorm" METHOD="Post"> <br />
                       To: <INPUT TYPE="text" NAME="NamUsr" SIZE="20"><BR> <br />
                       Message: <INPUT TYPE="text" NAME="Msg" SIZE="40"><BR> <br />
                       <INPUT TYPE="submit" VALUE="Send Message"> <br />
                       </FORM> <br />
         <% END IF<br />
 %> <br />

Cheers
Raz

/*
Ghazi Hadi Al Wadi, PMP, ASQ SSGB, DBA
*/


QuestionDatabase access with ASP.NET Pin
chancomsats29-Oct-07 21:55
chancomsats29-Oct-07 21:55 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.