VB.NET
All, This is probably a much harder question than what should go in the "Getting Started" forum, but I am new and don't know where to put it. Anyways, I am currently developing an FTP class in VB.NET. It's kid tested, mother approved when trying to access an FTP Server on a Windows box meaning I can connect, run commands, upload and download a file no problem. My issues come when I try to use the same class with the same commands to access an FTP server on a UNIX box. I can connect and login just fine, but after that all my commands come back "500 'PWD': command not understood.". This is fo...
converting vb.net 2003 files to vb.net 2005
Hi,
i am beginner..i watch videos about vb.net..they made on vs.net 2003 when i wrote these codes in 2005 ,it gives errors..is there any program which convert the code automatically?
thanks,Thanks,Speranza
What videos are you talking about? There are lots of great, up-to-date ASP.NET Videos on this site for free.Darrell Norton, MVPDarrell Norton's BlogPlease mark this post as answered if it helped you!
i am talking about learnvisualstudio.net videos..Thanks,Speranza
Speranza:they made on vs.net 2003 when i wrote these codes in 2005 ,it gives errors..is there a...
converting to vb.net from c#.net authorize.net
authorize.net offered me some sample code when I signed up with them the only problem is the sample code is in c#.net but my page that they type all of their credit card into is vb.net
<code><%@ Import Namespace="System.Net" %>
<%@ Import Namespace="System.IO" %>
<script language="C#" runat="server">
void Page_Load(Object Src, EventArgs E) {
myPage.Text = readHtmlPage("https://certification.authorize.net/gateway/transact.dll");
}
private String readHtmlPage(string url)
{
...
vb.net vs c#.net vs j#.net
just out of curiousity which looks, acts most like java? i'm still learning trying to used to vb.net but it seems that it was easier to do some stuff with java.
C# is Java++ in my opinion. If you have done C or Jave you will prefer C#.Mike Schellenberger - MCAD
If you are looking for language similar to java go for J#.
However most code samples you find on the net will be in VB.NET and C#....
how can i Get OCX File in .net IDE vb.net/C3
hi all,
How can I generate OCX file in VB.net/c# 2005 that will interact in web pages...?Thanks & Regards,Murthy.
Hi murthysrn,
As far as I know, VB 2005 and C# 2005 cannot create the project for ocx file. However, I hope the following link will be helpful to you.
Creating an ActiveX Control in Visual Studio 2005http://msmvps.com/blogs/pauldomag/archive/2006/08/16/107758.aspxSincerely,Benson YuMicrosoft Online Community Support Please remember to mark the replies as answers if they help and unmark them if they provide no help. This can be beneficial to other co...
FTP client in VB .NET , Upload File
How can i upload a file to the ftp ?
so i read this
http://www.codeproject.com/vb/net/FtpClient.asp
although it's C# but it works , but while i set
ftp.Method = System.Net.WebRequestMethods.Ftp.UploadFile
it upload empty file in the ftp , i know , i am doing something stupid
so how can i edit the code to upload the file successful ?
...
Upgrade VB.net 2002 to VB.net 2003
Hi, i want to upgrade VB.net 2002 to VB.net 2003.what is the procedure?Uninstall 2002 and Install 2003 or something else? VB.net 2003 includes Framework 1.1 or i will install it separately?thanx in advance ...
About VB.net And VC.net
I am always Programming With VB.net
Recently My Teacher ask us to learn Vc or VC.net.
I try to learn it and compare it with vb.net,
I found it's much too complex than vb.
However it is said vc is strongger than vb
I want to know Why vc is strongger than vb?
and is it hard too learn vc?
I am new to asp.net
Thanks for man who want to help me!
Wuhan, Hubei, China
Below links could give some info
http://support.microsoft.com/default.aspx?scid=kb;EN-US;Q308470Sreedharhttp://www.w3coder.orgweblog http://weblogs.asp.net/skoganti
VisualC is not a language in an of itself...
Net:FTP, Net::CmdI'm using Net::FTp and Net::Cmd modules in a script to completely
automate some FTPing stuff.
snippet
$ftp->put($fileh,"/tmp/test.txt") || die "cant put the file\n";
$ftp->command("chmod","755","test.txt") || die "Cant run quot\n";
$ftp->quit();
I have no luck making the $ftp->command stuff to work. I'm using
solaris 5.8 ftp client. Anyway, I can make this work? Native
Solaris ftp client/server can not support "quot site" stuff.
Am I out of luck??
Please dont offer suggestions to use &...
Net::SSH and Net::FTP?------_=_NextPart_001_01C3B7DF.20E3F54A
Content-Type: text/plain;
charset="us-ascii"
Content-Transfer-Encoding: quoted-printable
I would like to use SSH to login to a remote system, then using FTP,
upload a file from the remote machine to another machine which will
display the data. If I can automate this process, I think I'll be in
great shape, tell me does this code seem like it would work for this?
>use Net::SSH::Perl;=20
>my $ssh =3D Net::SSH::Perl->new($host); #Logging into the remote =
machine
>$ssh->login;=20
>my($READ, $WRITE) =3D $ssh-&...
VB.Net To C#.Net
Hello...
Since Last from 1 year i had develope web application in using vb.net
now i want to transfer from vb.net to c#.net
so what should i do to transform to c# language any link or book related to me through
i can easily understand and coding using c# in a short time...
Thanks~ Mark As Answer If UseFull ~Kaushal.
Hi,
you can read the specifications of the language. You're already familiar with .NET and how to program in an OO manner thanks to your experience with vb.net. The only thing you need to learn is the new syntax of C#. You can also convert parts of your v...
vb .net or c# .net
I currently develop websites using php but have been requested to develop a site using asp.net. The question I have is for someone who knows php would it be better to transition to vb.net or c#.net?
Thanks,
Fr. Robert
C# -> There is a converter that will transition about 60% or more of your PHP code to C#. Plus C# is closer to PHP than VB.NET.Jason N. GaylordASPInsider and Microsoft MVPhttp://jasongaylord.com...
C#.NET or VB.NET
what lang does everyone prefer?
Thanks, Peter Iuvara, MCP
It's a very famous debatable question in forums! I would say if you are from Java/C/C++, then C# would be easy to use for you. If you are from ASP/VB, then VB.NET would be easy for you!
As long as if you follow CLS, then what ever the language you use, it's going to be the same for CLR!Sreedharhttp://www.w3coder.orgweblog http://weblogs.asp.net/skoganti
I would agree with that ... just curious as to what user's on this forum predominantly code in?Thanks, Peter Iuvara, MCP
I came from no real programming background, started i...
ANN: VB.NET Forums
Hello Fellow Programmers:
Just an announcement the VB.NET Forums moved to the advanced vBulletin 3 software providing a feature rich and enjoyable forum experience. Stop by in your Internet surfing to help others, ask questions, and partake in our VB.NET only community. Visit us in addition to your trips to this great community.
http://www.vbdotnetforums.comNeal...
Net:Net:Net::LDAP::FAQ------_=_NextPart_001_01C6429F.D89AA417
Content-Type: text/plain;
charset="us-ascii"
Content-Transfer-Encoding: quoted-printable
Hello,
Net::LDAP
Net::LDAPS
Is there a possible to LDAP bind with an encrypted (SHA, SSHA, CRYPT,
....) password? I don't like to write the secret password to the perl
file.
Best regards
Barbara Wilbert
------_=_NextPart_001_01C6429F.D89AA417--
Wilbert Barbara (CI/OSI) * wrote:
> Hello,
>
> Net::LDAP
> Net::LDAPS
>
> Is there a possible to LDAP bind with an encrypted (SHA, SSHA, CRYPT,
> ......