Mini Kabibi Habibi
Imports Microsoft.VisualBasic
Imports System
Imports System.Collections.Generic
Imports System.Linq
Imports System.Web
Imports System.Web.UI
Imports System.Web.UI.WebControls
Partial Public Class MasterPage
Inherits System.Web.UI.MasterPage
Protected Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs)
styles.Href = ResolveUrl("~/Content/styles.css")
Dim browserInfo = Request.Browser
If browserInfo.Browser = "IE" AndAlso browserInfo.MajorVersion < 9 Then
stylesIE.Visible = True
stylesIE.Href = ResolveUrl("~/Content/stylesIE.css")
End If
End Sub
End Class