Ciao Gabriele,
Can you give this sample a try? It uses OAuth2.0 / Microsoft EntraID. Make sure to update the TenantID, ClientID, and Client Secret in the Secrets.json file.
Best,
Levie
As DevExpress is a third party software not created by Wisej, you’ll need to refer to their documentation on this:
If you need help in how to add custom javascript to the dxPivotGrid extension you should contact support directly with a test case and a valid premium license.
Hi Adrian,
your code is wrong. Change line 36 to this and it should work as intended:
dg.Height = f.ClientSize.Height - b.Height - 10;
Best regards
Frank
Hi Cristian,
please attach a complete runnable test case. From the code snippet you sent I cannot fully understand what you are trying to achieve.
Best regards
Frank
Hi Adrian,
please attach a complete runnable test case for us to take a look at.
Best regards
Frank
We would need a reproducible test case and detailed steps to reproduce in order to look into this.
Julie
Got it – thanks Frank!
Hi Dino,
in order to help you and investigate this we need a reproducible test case.
Best regards
Frank
Hi Rocco,
that’s the intented behavior. TextBoxes and ComboBoxes AutoSize effects their height, not their width.
Best regards
Frank
In same project no, you can’t mix VB.NET and C#. In same solution yes, you can use C# and VB.NET Projects.
It’s added by the proxy or load balancer. All server variables depends on the web server. REMOTE_ADDR and REMOTE_HOST return the client IP address. If you see the IP address of the server there is probably a redirection or proxy on your server. I just tested and it all works fine. If your server changes the headers it may be a configuration issue. Either way, Wisej.NET doesn’t change the headers.
If you still have an issue, send a link to a sample hosted application that shows all the server variables:
private void button1_Click(object sender, System.EventArgs e) { this.dataGridView1.RowCount = 0; var vars = Application.ServerVariables; foreach (var name in vars.AllKeys) { this.dataGridView1.Rows.Add(name, vars[name]); } }
Hi Julie,
there’s no HTTP_FORWARDED in IIS server variables, is it something created by wisej?
Glad you were able to resolve the issue!
Julie
It’s not an error to be handled and cannot be handled, it’s already managed by the System.Net.WebSocket library which is not part of Wisej. It’s a normal occurrence for the System.Net.WebSockets.ManagedWebSocket. You found it in the event viewer, not in the application. It’s the websocket throwing an exception of a connection terminated for a variety of reasons.
Julie
Just to have question answered, debug log is possible in web.config
<aspNetCore processPath=“dotnet” arguments=“.\MyApp.dll” stdoutLogEnabled=“false” stdoutLogFile=“\\?\%home%\LogFiles\stdout” hostingModel=“inprocess”> <handlerSettings> <handlerSetting name=“debugFile” value=“.\logs\aspnetcore-debug.log” /> <handlerSetting name=“debugLevel” value=“FILE,TRACE” /> </handlerSettings> </aspNetCore>
more details
Hello,
It’s not a wisej feature or issue. Anything that works with aspnet core works in wisej.
As it’s not a wisej feature it’s out of scope of this support forum.
Julie
Auto for all columm of ddataagrid use:
For Each col As Wisej.Web.DataGridViewColumn In DataGridView1.Columns
ColumnFilter1.SetShowFilter(col, True)
Next
For databound DataGridViews use the functions Fill/Append instead of assigning a DataSource:
https://docs.wisej.com/docs/controls/lists/datagridview#append-and-fill
Best regards
Frank
Hi Steve,
Sorry for the late response, to make a better understanding of what my colleague Julie wrote in a comment earlier, I have attached a sample.
In Window1, we don’t use an iFrame but instead we use the AspNetPanel control, and if you look at WebForms1.aspx.vb, you’ll see that we used a server side event to bring up or create the second form.
HTH,
Alaa