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
Do you know caching feature?
How do you change the session time-out value?
What is simple data binding?
Define dll hell?
What is asp.net web pages?
How can you access the properties and controls of master pages from content pages?
What is the difference between an htmlinputcheckbox control and an htmlinputradiobutton control?
Explain Session state management options in ASP.NET.
What is server transfer?
How to turn off cookies for a page?
What is a uri query?
Explain the difference between singleton and single call?
What is server infrastructure & server components?
Name the tools or API for developing or testing web api?
Describe briefly what is the role of IIS on an ASP.NET application? What does it for the same application?