Public Sub ShowMessage(ByVal MessageText As String) MessageText = Replace(MessageText, """", "") Dim strScript As String = " " If (Not Page.IsStartupScriptRegistered("clientScript")) Then Page.RegisterStartupScript("clientScript", strScript) End If End Sub Technorati Tags: ASP.NET , ASP.NET1.1 , asp.net serverside message box
Protected Sub SetFocus(ByVal ctrl As WebControl) ' Define the JavaScript function for the specified control. Dim focusScript As String = " " ' Add the JavaScript code to the page. Page.RegisterStartupScript("FocusScript", focusScript) End Sub Technorati Tags: ASP.NET1.1 , setfocus
Anyone who worked in large scale implementation would have come across the issue of implementing a tactical system, which is either hard or never replaced. Below are my views of the potential reason. Most of the below points are apparent but often overlooked. What is a tactical system? A solution to temporarily bridge a significant technical or a business gap. Characteristics of a tactical system. 1. Cheaper to implement. 2. Easy to train. 3. Quicker to roll out. 4. The life span of a tactical system is not higher than six months. 5. Has less business benefit compared to an end state system. When a tactical system becomes an end-state system? 1. When it delivers beyond MVP. 2. When it is more flexible compared to a strategic system. 3. When its life span is more than a year. 4. When its user base is high. 5. When there is no road map and a secured business case and funding for a strategic system. 6. When deeply embedded within the business pro...
Comments