108年5月25日在台南市美術館1館開展,10名畫家中,已有6人去世,其中94歲的李奇茂前一日上午病逝;美術館人員說,李奇茂對參加「寶島長春圖卷」開展非常期待,也很興奮,館方也特地規劃動線,讓行動不便的李奇茂不必受限於美術館的空間。



<script src="/ckeditor/ckeditor.js"></script> <textarea name="editor1" id="editor1">......</textarea> <script> CKEDITOR.replace( 'editor1' ); </script>
<script> var data = CKEDITOR.instances.editor1.getData(); </script>PHP
<?php $editor_data = $_POST[ 'editor1' ]; ?>ASP.NET
Request.Unvalidated.Form["editor1"];
<script> CKEDITOR.instances.editor1.setData( text, function() { this.checkDirty(); // true }); </script>
<script> $('#editor1').html(text); </script>
<input="hidden" id="hid01" runat="server" />
//hid01.Value = System.Net.WebUtility.HtmlEncode(text); hid01.Value = text; Label1.Text = @" <script> $('#editor1').html(document.getElementById('" + hid01.ClientID + "').value); </script> ";
using System.Web.Services; //[WebMethod] protected void Page_Load(object sender, EventArgs e) { } [WebMethod] public static string getHello(string str) { return str; }
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script> function CallServerFunction(StrPriUrl, ObjPriData, CallBackFunction) { $.ajax({ type: "post", url: StrPriUrl, contentType: "application/json; charset=utf-8", data: ObjPriData, dataType: "json", //"text" async: true, //true (非同步執行) false(同步執行) success: function (result) { if (CallBackFunction != null && typeof CallBackFunction != 'undefined') { CallBackFunction(result); } }, error: function (result) { alert('error occured'); alert(result.responseText); }, }); } </script>
<script> function test() { CallServerFunction("AjaxTestPage1.aspx/getHello", "{'str':'123'}", function (myresult) { alert(JSON.stringify(myresult)); alert(myresult.d); }); } </script>