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
What is difference between session and application in asp net?
How to make sure that contents of an updatepanel update only when a partial postback takes place (and not on a full postback)?
What are the events that happen when a client requests an asp.net page from iis server?
Can we use a static function with a non-static variable?
What does uri mean?
What is difference between URL and URI?
Explain login controls.
Can we have multiple worker process in an ASP.NET application? If so then how it has been handled by application? And who handles it?
What is a page life cycle?
What is the difference between server-side scripting and client-side scripting?
What are the types of validation in asp net?
What is aspect-oriented programming?
Can you explain page lifecycle in net?
How Can assign alias name for ASP.NET Web API Action?
Why is an object pool required?