Microsoft
Software
Hardware
Network
Question : Is their anyway to convert label to a string
Is their anyway to convert label to a string
Dim u As UserControl = TryCast(FindControl("Event
Details"),
UserControl)
Dim b As Label = TryCast(u.FindControl("lbl
EventID"),
Label)
Answer : Is their anyway to convert label to a string
If u are able to find the control, then u can assign the label text to string like
Dim b As Label = TryCast(u.FindControl("lbl
EventID"),
Label)
dim str as string
str = b.Text
Random Solutions
hide in form closing....can not shut down
Excel - Using Find Method to Locate a Cell in Another Open Workbook
Need to convert bytes to image in web page ASP.Net C#
How many servers would I need for 100 concurrent users for terminal services?
Error attempting to set conditional formatting in Excel via VB.NET
Microsoft sql2005 security patch
"Service Unavailable" for all ASP pages, but all html pages OK (intermittent)
C# Replace Statement
store a query result in a table
Passing Paremeters to AddHandler Method in VB.NET