User Tools

Site Tools


memo:index

Memo



2025-03-25 C# CefSharp 如何捕獲 OnBeforePopup Event

  • 要捕獲 CEF (Chromium Embedded Framework) 的 OnBeforePopup 事件,您需要在 CefSharp 中實現 IRequestHandler 接口,並重寫 OnBeforePopup 方法。以下是如何在 C# 中完成這個任務的步驟:

→ Read more...

2025/04/01 16:48



2025-03-14 C# call webdocument javascript function

  • c# 如何呼叫 call webbrowser 中 javascript function並傳值給該Function,該function如下:
  • <script type="text/javascript">
    //<![CDATA[
    var theForm = document.forms['aspnetForm'];
    if (!theForm) {
        theForm = document.aspnetForm;
    }
    function __doPostBack(eventTarget, eventArgument) {
        if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
            theForm.__EVENTTARGET.value = eventTarget;
            theForm.__EVENTARGUMENT.value = eventArgument;
            theForm.submit();
        }
    }
    //]]>
    </script>

→ Read more...

2025/04/01 16:48



2025-03-14 C# Winform WebBrowser

  • Question:
    • c# Winform webbrowser 元件中所載入的 HTML內含 onclick event如下
      <input style="border-width: 0px;" 
      onclick="javascript:__doPostBack('ctl00$ContentPlaceHolder1$GridView3','Select$0');return false;" 
      type="image" 
      alt="選取" 
      src="App_image/profile.gif">
  • 但是卻呼叫出 IE視窗,這是發生甚麼事,如何捕獲該Event並將結果導向另一個 webBrowser 元件中

→ Read more...

2025/04/01 16:48



2025-03-13 在 C# 開發程式時,避免出現病毒警告並確保應用程式的安全性

  • 在 C# 開發程式時,為了避免出現病毒警告並確保應用程式的安全性,您可以考慮以下幾個步驟:

→ Read more...

2025/04/01 16:48



2025-03-13 Unable to load resource (.resx) file because it is not trusted

→ Read more...

2025/04/01 16:48

138 person(s) visited this page until now.

memo/index.txt · Last modified: 2019/11/12 14:09 (external edit)