This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Imports System | |
| Imports System.Collections.Generic | |
| Imports System.ComponentModel | |
| Imports System.Text | |
| Imports System.Web | |
| Imports System.Web.UI | |
| Imports System.Web.UI.WebControls | |
| <DefaultProperty("Text"), ToolboxData("<{0}:myBtn runat=server></{0}:myBtn>")> _ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Public Function createBtn(ByVal Handler As EventHandler, Optional ByVal text As String = "Ändra", Optional ByVal link As String = "main.aspx") | |
| Dim editbtn As New LinkButton | |
| editbtn.Attributes.Add("rel", link) | |
| editbtn.Attributes.Add("class", "Btn") | |
| editbtn.Attributes.CssStyle.Add("margin-left", "10px") | |
| editbtn.ID = "editBtn" | |
| Dim icon As New Image | |
| icon.ImageUrl = "Images/edit.png" | |
| icon.CssClass = "icon" | |
| editbtn.Controls.Add(icon) |
NewerOlder