Ana içeriğe atla

Kayıtlar

Haziran, 2018 tarihine ait yayınlar gösteriliyor

Create a New UUID for OpenEdge (GENUUID utility)

%DLC%\bin\genuuid (on Windows) Open proenv Run Genuuid  To identify the various Progress Brokers on a specific system, a  Universally Unique Identifier (UUID)  is needed.
OPENEDGE CLIPBOARD SAMPLE  IF AVAILABLE tablename THEN DO:      CLIPBOARD:ITEMS-PER-ROW = 1.      CLIPBOARD:VALUE = TableName.FieldName. END.
Execute JavaScript function from ASP.NET codebehind From  S uprotim Agarwal   blog.  Calling a JavaScript function from codebehind is quiet simple, yet it confuses a lot of developers. Here's how to do it. Declare a JavaScript function in your code as shown below: JavaScript < head runat ="server"> < title > Call JavaScript From CodeBehind </ title > < script type ="text/javascript"> function alertMe() { alert( 'Hello' ); } </ script > </ head > In order to call it from code behind, use the following code in your Page_Load C# protected void Page_Load( object sender, EventArgs e) { if (!ClientScript.IsStartupScriptRegistered( "alert" )) { Page.ClientScript.RegisterStartupScript( this .GetType(), "alert" , "alertMe();" , true ); } } VB.NET If (Not ClientScript.IsStartupScriptRegistered( "alert&q