crep Posted March 30, 2003 Posted March 30, 2003 Hey I'm trying to make a web-based NetCat (a simple network tool which allows regular back and forth talk.) Its like telnet, but without its own things, and doesn't leave anything out. I've made a vb.net forms one that works. But not in asp.net. Any ideas? Thanks, Quote
*Experts* Volte Posted March 30, 2003 *Experts* Posted March 30, 2003 A TelNet like this in ASP.NET is, as far as I know, impossible. All ASP.NET is processed server-side, and so is already processed by the time the user gets it. The only good way to do something like this online would be to write a Java applett or something similar. Quote
wyrd Posted March 30, 2003 Posted March 30, 2003 Can you post the one you made with vb.net forms so we can take a look at exactly what you're trying to do? If it's a persistent connection I'm not all that sure if it's possible with ASP.NET, because all the objects are created on the server and destroyed as soon as the page data is sent to the client. There is an application state however, but even with that.. not sure. Need a better idea of what you're attempting before I can toss out theories. :) This might be one area where Java has ASP.NET beat, because it can run code on the client. Hmm.. maybe I shouldn't jump to drastic conclusions just yet. :) Let's see if we can't figure something out. Edit: Bleh.. basically what Volte said. Still though, I have faith that there might be a way. I refuse to give into a Java solution. :cool: Quote Gamer extraordinaire. Programmer wannabe.
crep Posted March 30, 2003 Author Posted March 30, 2003 For those that are unfamiliar with NetCat, I stuck it at http://64.71.32.35/crep/crep/nc.zip. For Instance, if you type -- nc dotnetforums.com 80 -- you would then have a connection, and would type the actual get commands, etc. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.