Click here to Skip to main content
15,890,741 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: how to fill value in textbox in panel Pin
Masood Kochi,SSF15-Jun-08 23:26
Masood Kochi,SSF15-Jun-08 23:26 
GeneralRe: how to fill value in textbox in panel Pin
Sneha Bisht16-Jun-08 0:05
Sneha Bisht16-Jun-08 0:05 
Questionhow to download a file Pin
Nika Asgari15-Jun-08 22:38
Nika Asgari15-Jun-08 22:38 
AnswerRe: how to download a file Pin
Masood Kochi,SSF15-Jun-08 23:32
Masood Kochi,SSF15-Jun-08 23:32 
AnswerRe: how to download a file Pin
Ravi Sant3-May-11 0:26
Ravi Sant3-May-11 0:26 
Questionimage compress Pin
pradeep kumarappagari15-Jun-08 22:11
pradeep kumarappagari15-Jun-08 22:11 
AnswerRe: image compress Pin
Ravi Sant3-May-11 0:27
Ravi Sant3-May-11 0:27 
QuestionSerial Port on Web Pin
caradri15-Jun-08 22:05
caradri15-Jun-08 22:05 
Hi.
I am trying to do a Serial Port I/O on multiline text box on web, client side, in windows app we have:
private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
{
if (!serialPort1.IsOpen) return; //don't send if the port is close
char[] buff = new char[1];
buff[0] = e.KeyChar;
serialPort1.Write(buff, 0, 1);
e.Handled = true;
}

private void serialPort1_DataReceived(object sender, System.IO.Ports.SerialDataReceivedEventArgs e)
{
RxString = serialPort1.ReadExisting();
Invoke(new EventHandler(DisplayText));
}

private void DisplayText(object sender, EventArgs e)
{
textBox1.AppendText(RxString);
length = textBox1.Lines.Length;
thescript();
}

And i tryied to write something like this for the web client but there is no the event and the invoke function.
how i can to do this?
thanks.
Questioncreate dynamic dropdown Pin
Member 387988115-Jun-08 20:37
Member 387988115-Jun-08 20:37 
AnswerRe: create dynamic dropdown Pin
Masood Kochi,SSF15-Jun-08 23:40
Masood Kochi,SSF15-Jun-08 23:40 
AnswerRe: create dynamic dropdown Pin
Ravi Sant3-May-11 0:28
Ravi Sant3-May-11 0:28 
QuestionImporting Contacts from Mail Clients in ASP.net Pin
sukkureddy15-Jun-08 20:15
sukkureddy15-Jun-08 20:15 
AnswerRe: Importing Contacts from Mail Clients in ASP.net Pin
Christian Flutcher15-Jun-08 20:18
Christian Flutcher15-Jun-08 20:18 
QuestionRe: Importing Contacts from Mail Clients in ASP.net Pin
sukkureddy17-Jun-08 0:13
sukkureddy17-Jun-08 0:13 
AnswerRe: Importing Contacts from Mail Clients in ASP.net Pin
sukkureddy18-Jun-08 0:28
sukkureddy18-Jun-08 0:28 
AnswerRe: Importing Contacts from Mail Clients in ASP.net Pin
Ravi Sant3-May-11 0:47
Ravi Sant3-May-11 0:47 
QuestionDatetime format ? Pin
Masood Kochi,SSF15-Jun-08 19:51
Masood Kochi,SSF15-Jun-08 19:51 
AnswerRe: Datetime format ? Pin
Christian Flutcher15-Jun-08 20:15
Christian Flutcher15-Jun-08 20:15 
GeneralRe: Datetime format ? Pin
Masood Kochi,SSF15-Jun-08 20:29
Masood Kochi,SSF15-Jun-08 20:29 
GeneralRe: Datetime format ? Pin
Christian Flutcher15-Jun-08 20:46
Christian Flutcher15-Jun-08 20:46 
GeneralRe: Datetime format ? Pin
Ravi Sant3-May-11 0:49
Ravi Sant3-May-11 0:49 
Question[Message Deleted] Pin
$unil Dhiman15-Jun-08 19:49
$unil Dhiman15-Jun-08 19:49 
AnswerRe: connect printer to USB port using Printer Job Language (PJL) in C# Pin
Christian Flutcher15-Jun-08 20:15
Christian Flutcher15-Jun-08 20:15 
AnswerRe: connect printer to USB port using Printer Job Language (PJL) in C# Pin
Ravi Sant3-May-11 0:30
Ravi Sant3-May-11 0:30 
QuestionFile upload control and File size ? Pin
Masood Kochi,SSF15-Jun-08 19:08
Masood Kochi,SSF15-Jun-08 19:08 

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.