You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
396 B
12 lines
396 B
Public Class StyleSheetEditor
|
|
Inherits System.Web.UI.Page
|
|
|
|
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
|
|
Editor1.LoadText("~/styles/site.css")
|
|
End Sub
|
|
|
|
Private Sub Editor1_SaveButtonClick(sender As Object, e As EventArgs) Handles Editor1.SaveButtonClick
|
|
Editor1.SaveFile("~/styles/site.css")
|
|
|
|
End Sub
|
|
End Class |