Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

Can One website be made using two different languages like
c#,vb.net etc......

Answer Posted / ghulam moinuddin

Yes, It can be possible to make one website using two
different laguages like C# and VB.Net

Steps are Given below:
1)Create a New Website Select A blank Asp.Net Website and
Select Language Visual Basic

2)Now Add New Form (Default2.aspx) and Select its Languate
C#

3)Take a button on Default.aspx then write in its Code
Window

Partial Class _Default
Inherits System.Web.UI.Page

Protected Sub Button1_Click(ByVal sender As Object,
ByVal e As System.EventArgs) Handles Button1.Click
Response.Redirect("Default2.aspx")
End Sub
End Class

4)Now Take a button on Default.aspx then write in its Code
Window
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

public partial class Default2 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{

}
protected void Button1_Click(object sender, EventArgs e)
{
Response.Redirect("Default.aspx");
}
}

RESULT:
Now Executte your Website Both buttons will call one
another pages which are in different languages VB and C#

Is This Answer Correct ?    4 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Which asp.net objects encapsulate the state of the client and the browser?

1086


What is a reflection?

975


code for "For every 5days system has to create 1text file with the corresponding date and it has to store in c-drive" by using web applications

1853


What is the difference between a page theme and a global theme?

987


Can you explain page lifecycle in net?

972


Define what is razor? : asp.net mvc

997


Is it possible to develop a single web application using ASP.NET webforms and ASP.MVC?

1061


What is cross page posting? How is it done?

959


What is session object? Describe in detail.

1020


What is asp net_sessionid?

1094


In Data grid the question is below quantity price total these are 3 fields available in data grid if you enter quantity the total has to update automatically.Price field is already filled completely

1996


How you will improve web application performance?

1035


Explain about asp.net 2.0 themes?

957


Difference between using directive vs using statement?

989


What is Razor View Engine

1071