use VB.NET and C#.NET code in the same C#.NET project
All-- Here is a sample that is "off the beaten path", (at least for me). Is it possible, in an ASP.NET application, using the code-behind page building technique, to have both pages written in VB.NET and pages written C#.NET?At http://www.WebLogicArts.com/DemoList.aspx there is a sample that shows that, (contrary to popular belief), it IS possible to mix ASP.NET pages built with C#.NET with ASP.NET pages built with VB.NET in the same VS.NET 2003 project. Note that this is just a "fun" sample to see if it can be done and I do not recommend this practice as a "standard" way of develo...
Sending SMS using vb.net or C#.net using vb.net or c#.net
Hi
My requirement is
I hav one csv file with these fields id,mobilenum,messgae,status.intiallu staus is 0.
once i read the all fileds and take that mobile number.using tat mobile number i need to send sms .after sending sms i shuld change status as 1
How to send sms thru coding (please dont provide any links.if it is provide also please give working links becox i checked codeproject .i didnt get any nice link.
and also provide the how to update the status field im csv file
Thank
ssandhya
To send SMS, you need some third party SMS providers. if you consul...
How to migrate code from vb.net to c#.net?
Hi all,If anybody knows information on migration of VB.Net application to C#.net.
i.e Any tools available, best practices, methodology for estimation. etc.
RegardsHelen
Hey,
Take a look at this topic http://forums.asp.net/t/1100603.aspxMaybe some of these sites can be of help to you.
Arnold
you can do it by page by page
just copy and paste ur page in the following link
http://labs.developerfusion.co.uk/convert/vb-to-csharp.aspx
and convert ur vb.net to c#
gotcha!!YasserSpica.www.spica.aewww.bncnetwork.netPlease remember to mark as answers i...
Translate c#.net code to vb.net code
Hi
I can usually do the translation myself, but this time I am a bit stumped
Let us consider to rewrite Urls (more than 16000 links) using a table. Save original url and rewritten url in a table. Now add a class file in App_Code folder.
class UrlRewriteModule : IHttpModule{ public void Dispose() { // Nothing to dispose } public void Init(HttpApplication context) { context.BeginRequest += new EventHandler(context...
How to convert C#.Net code to VB.Net code ???...
HI,
i was searching something new, then i suddenly find some tips to convert C#.Net code to VB.Net but i did not do well.
i am puttint its url here plz tell me how to convert C#.Net code to VB.Net.
http://www.dotnetspider.com/code/C-273-Convert-C-VB-NET.aspx
Jasim...Please remember to click “Mark as Answer” on the post that helps youJasim AkhtarNew Delhi ( INDIA )
It would be better if you write the problem you having, while converting from C# to VB.NET. You cannot completely rely on online converters.
ThanksMark post(s) as "Answer" that helped youElectronic ScrewWebsite||Bl...
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)
{
...
How to change vb.net code to C#.Net ?...
Hi,
Earlier i had a class that i got it from this Forum, it in vb.net and i am trying it to convert it in c#.net but i am unable to covert properly to work.
the functionality of this class is to convert number value to words. i am putting both of code c#.net and VB.net please rectify it.Public Class NumberToWords
Dim Character As String
Public Function ConvertNumber(ByVal A As Double) As String
On Error Resume Next
Dim MM
Dim IM
ConvertNumber = ""
MM = Microsoft.VisualBasic.Len(A)
IM = Microsoft.VisualBasic.Left(A, Mic...
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#....
.Net 2.0 Web application using Vb.net is unable to create object of another dll writen in C# .net 2.0
Hi,
I habe created one ASP.net web application using Vb.net which is adding reference of dlls written in C# and .net 2.0. But whenever trying to create object of referencing dll, it is throwing error :Object reference does not set to an object. But, locally it is working fine,. In the server i have deployed the .aspx files and dll files in the bin. There were already an web.config in the server which is of .net 1.1. But checked it is retrieving value for that web.config correctly.
Should i have to deply any other files and if not what can be the solution for this? Please help.
Thanks,
So...
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...
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...
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...
Both C# ASPX pages and VB.NET ASPX in single VB.NET Web Applcation Template
Hi..
Is it possible to have both c# pages and VB pages in same Webapplication, what i chose is VB.NET Web application Template.
With Thanks,
Jaya....
I don't see why you couldn't, but for the sake of consistency I don't know why you would want to do this. When you choose a C# or VB.NET application template(I'm assuming you're using VS or WebMatrix), it simply creates a .aspx file that includes a page directive that specifies the page language. If you created a C# template but want to use VB.Net instead, you need to go from:
<%@ Page Language="C#" ....
to...
Difference Between VB.Net And C#.Net
hi friends,Please tell me the key difference between the Vb.Net And C#.Net..wheather vb.net supports operator overloading..Thanks & Regards,Pravin Kumar T. Regards,Pravin Kumar T.
pravin_thanusu:Please tell me the key difference between the Vb.Net And C#.Net..
Neither are ASP.NET so you probably want a different forum. You'll also find your answers at Microsoft.com.
JeffPlease: Don't forget to click "Mark as Answer" on the post that helped you. That way future readers will know which post solved your issue.
>Please tell me the k...