2
Answers

Show url content in windows forms application

Tej Maurya

Tej Maurya

8y
740
1
I am facing a problem in showing url content in windows forms application.
I tried WebBrowser control available in toolbox  to show but it does not support is completely due to jquery and showing some web socket problem also.
 
However third party control is available like "CEFSharp" but it is very costly.
Can any one suggest me some open source solution to this problem. 
Answers (2)
2
Sangeetha S

Sangeetha S

269 7.1k 313.6k Feb 14

A System.AccessViolationException usually indicates that your application is trying to access memory that it shouldn't be. This can happen for several reasons, such as:

  1. Dereferencing a null or invalid pointer: If you're working with pointers in languages like C or C#, accessing memory through a pointer that hasn't been initialized or has been freed can cause this error.

  2. Interoperability issues: If your application is using interop (calling unmanaged code), ensure that the data types and memory management are handled correctly.

  3. Stack overflow: Excessive recursion or deep function calls can lead to stack overflow, causing this exception.

  4. Corrupt memory: Issues such as buffer overflows or improper memory management can corrupt memory, leading to this error.