|
[x]
Posted via EE Mobile
|
||
Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again. |
||
| Question |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: |
Site.master
<asp:Panel ID="myPanel" runat="server">
<asp:Label ID="lbl1" runat="server" CssClass="status_title" />
<br />
<asp:Label ID="lbl2" runat="server" />
</asp:Panel>
BasePage
Public Sub Alert(ByVal message As String, Optional ByVal type As prompt_type = prompt_type.type_error)
Dim myPanelAs Panel = DirectCast(FindControlRecursive(Page, "myPanel"), Panel)
Dim lbl1As Label = DirectCast(FindControlRecursive(Page, "lbl1"), Label)
Dim lbl2 As Label = DirectCast(FindControlRecursive(Page, "lbl2"), Label)
//do my code
End Sub
Public Shared Function FindControlRecursive(ByVal root As Control, ByVal id As String) As Control
If id = String.Empty Then
Return Nothing
End If
If root.ID = id Then
Return root
End If
For Each c As Control In root.Controls
Dim t As Control = FindControlRecursive(c, id)
If t IsNot Nothing Then
Return t
End If
Next
Return Nothing
End Function
default.aspx
<%@ Page Language="VB" MasterPageFile="~/test/test2/test3/test4/test5/app.master" CodeFileBaseClass="BasePage"
AutoEventWireup="true" CodeFile="Default.aspx.vb" Inherits="testDefault" Title="test" %>
default.aspx.vb
Try
Dim sql As New SqlDatabase
Dim dt As DataTable = sql.FillDataTable("testingfolder5")
Catch ex As Exception
Alert(ex.Message)
End Try
|
Advertisement
| Hall of Fame |