473,289 Members | 1,829 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,289 software developers and data experts.

testwebsite which shows all get/post data send by an app

Hi,

does anybody know a public website which offers a service that displays all data send by a browser (or an app calling the website),
especially HTTP GET and POST data, browser data etc.?

I have a hard time finding what really my app is sending and this would be a great help!

Thank you very much !
Thomas
Aug 20 '06 #1
4 2252
Thomas,

It shoulnt really be a problem writing something like this. A quick 10
minute .NET script should echo all your data by running through
Request.Form, Request.QueryString and other required Request
properties. Why not write one yourself?

Sarat

Thomas Eichner wrote:
Hi,

does anybody know a public website which offers a service that displays all data send by a browser (or an app calling the website),
especially HTTP GET and POST data, browser data etc.?

I have a hard time finding what really my app is sending and this would be a great help!

Thank you very much !
Thomas
Aug 20 '06 #2
Hi Sarat,
>Why not write one yourself?
The site must be in the internet (for the test) and due to firewall regulation
I can't connect my testwebserver to the internet ...

Therefore I hoped somebody has already done this ...

Thank you,
Thomas
Aug 20 '06 #3
If you're using IE, you can use ieHttpHeaders :

http://www.blunck.info/iehttpheaders.html

It doesn't display all the data, only the headers, though.
This is what programmers are usually interested in.

You can loop through the Forms collection to retrieve the data the browser sent.

Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"Thomas Eichner" <t.*******@eichner.dewrote in message news:ec*************@news.t-online.com...
Hi,

does anybody know a public website which offers a service that displays all data send by a browser
(or an app calling the website),
especially HTTP GET and POST data, browser data etc.?

I have a hard time finding what really my app is sending and this would be a great help!

Thank you very much !
Thomas

Aug 20 '06 #4
"Sarat Pediredla" <sa*************@gmail.comwrote in message
news:11**********************@m79g2000cwm.googlegr oups.com...
It shoulnt really be a problem writing something like this. A quick 10
minute .NET script should echo all your data by running through
Request.Form, Request.QueryString and other required Request
properties. Why not write one yourself?
Here's mine, which I add to all of my sites... Your newsreader will probably
munge the indentation - sorry...

<%@ Page language="c#" %>

<%@ Import Namespace="System" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >

<head>

<title>Debug for ASP.NET</title>

<meta name="GENERATOR" content="Microsoft Visual Studio .NET 7.1" />

<meta name="CODE_LANGUAGE" content="C#" />

<meta name="vs_defaultClientScript" content="JavaScript" />

<meta name="vs_targetSchema"
content="http://schemas.microsoft.com/intellisense/ie5" />

<meta http-equiv="Expires" content="0" />

<meta http-equiv="Cache-Control" content="no-cache" />

<meta http-equiv="Pragma" content="no-cache" />

<script type="text/javascript">

function toggleTable(pstrTable)

{

if(document.getElementById("tbl" + pstrTable).style.display =="none")

{

document.getElementById("tbl" + pstrTable).style.display="block";

document.getElementById("cmd" + pstrTable).value="Hide";

}

else

{

document.getElementById("tbl" + pstrTable).style.display="none";

document.getElementById("cmd" + pstrTable).value="Show";

}

}

</script>

</head>

<body>

<form id="frmDefault" runat="server">

<input type="button" id="cmdCurrentIISContext" value="Show"
onclick="toggleTable('CurrentIISContext');" style="width:32pt;" />

<b>Current server context running IIS (Environment)</b>

<table id="tblCurrentIISContext" border="1px" style="display:none;">

<tr>

<td><b>Key</b></td>

<td><b>Value</b></td>

</tr>

<!--

<tr>

<td>System.Security.Principal.WindowsIdentity.GetC urrent().Name</td>

<td><%// = System.Security.Principal.WindowsIdentity.GetCurre nt().Name
%></td>

</tr>

-->

<tr>

<td>System.Environment.CurrentDirectory</td>

<td><% = System.Environment.CurrentDirectory.ToString() %></td>

</tr>

<tr>

<td>System.Environment.MachineName</td>

<td><% = System.Environment.MachineName.ToString() %></td>

</tr>

<tr>

<td>System.Environment.OSVersion</td>

<td>

<%

/*

4.00.1381 Windows NT 4.0

4.00.1381 Windows NT 4.0 Service Pack 6a 1999-11-30

5.00.2195 Windows 2000 (Windows NT 5.0)

5.00.2195 Windows 2000 (Windows NT 5.0) Service Pack 4 2003-06-26

5.1.2600 Windows XP (Windows NT 5.1)

5.1.2600.2096 Windows XP (Windows NT 5.1) Service Pack 2 RC1 2004-03-11

5.1.2600.2149 Windows XP (Windows NT 5.1) Service Pack 2 RC2 2004-06-10

5.2.3663 Windows Server 2003 RC1

5.2.3718 Windows Server 2003 RC2

5.2.3790 Windows Server 2003 RTM (Windows NT 5.2) 2003-04

6.0.4051 Windows "Longhorn" Client Preview 1 2003-11-02

6.0.4074 Windows "Longhorn" Client Preview 2 2004-05-04

*/

Response.Write(System.Environment.OSVersion.ToStri ng());

System.OperatingSystem osInfo = System.Environment.OSVersion;
switch(osInfo.Platform) // determine the platform

{

case System.PlatformID.Win32Windows: // Win95, Win98, Win98SE, WinMe

{

switch (osInfo.Version.Minor)

{

case 0:

{

Response.Write(" (Windows 95)");

break;

}

case 10:

{

if(osInfo.Version.Revision.ToString() == "2222A")

{

Response.Write(" (Windows 98 Second Edition)");

}

else

{

Response.Write(" (Windows 98)");

}

break;

}

case 90:

{

Response.Write(" (Windows Me)");

break;

}

}

break;

}

case System.PlatformID.Win32NT: // WinNT Win2k, WinXP, Win2k3, Longhorn,
Vista

{

switch(osInfo.Version.Major)

{

case 3:

{

Response.Write(" (Windows NT 3.51)");

break;

}

case 4:

{

Response.Write(" (Windows NT 4.0)");

break;

}

case 5:

{

switch(osInfo.Version.Minor)

{

case 0:

{

Response.Write(" (Windows 2000)");

break;

}

case 1:

{

Response.Write(" (Windows XP)");

break;

}

case 2:

{

switch(osInfo.Version.Build)

{

case 3663:

{

Response.Write(" (Windows Server 2003 RC1)");

break;

}

case 3718:

{

Response.Write(" (Windows Server 2003 RC2)");

break;

}

case 3790:

{

Response.Write(" (Windows Server 2003)");

break;

}

}

break;

}

}

break;

}

case 6:

{

switch(osInfo.Version.Build)

{

case 4051:

{

Response.Write(" (Windows \"Longhorn\" Client Preview 1)");

break;

}

case 4074:

{

Response.Write(" (Windows \"Longhorn\" Client Preview 2)");

break;

}

}

break;

}

default :

{

Response.Write(" (Unknown)");

break;

}

}

break;

}

}

%>

</td>

</tr>

<tr>

<td>System.Environment.SystemDirectory</td>

<td><% = System.Environment.SystemDirectory.ToString() %></td>

</tr>

<tr>

<td>System.Environment.UserDomainName</td>

<td><% = System.Environment.UserDomainName.ToString() %></td>

</tr>

<tr>

<td>System.Environment.UserName</td>

<td><% = System.Environment.UserName.ToString() %></td>

</tr>

<tr>

<td>System.Environment.Version</td>

<td>

<%

Response.Write(System.Environment.Version.ToString ());

switch(System.Environment.Version.ToString())

{

case "1.0.3705.000" :

{

Response.Write(" (.NET 1.0)");

break;

}

case "1.0.3705.209" :

{

Response.Write(" (.NET 1.0 SP1)");

break;

}

case "1.0.3705.288" :

{

Response.Write(" (.NET 1.0 SP2)");

break;

}

case "1.0.3705.6018" :

{

Response.Write(" (.NET 1.0 SP3)");

break;

}

case "1.1.4322.573" :

{

Response.Write(" (.NET 1.1)");

break;

}

case "1.1.4322.2032" : // native

case "1.1.4322.2300" : // included with Win2k3s 32-bit SP1

case "1.1.4322.2359": // included with Win2k3s 32-bit SP2

{

Response.Write(" (.NET 1.1 SP1)");

break;

}

case "2.0.50727.42":

{

Response.Write(" (.NET 2.0)");

break;

}

}

%>

</td>

</tr>

<tr>

<td>System.Environment.WorkingSet</td>

<td><% = (System.Environment.WorkingSet / (1000 * 1024)).ToString("#,###0")
+ "Mb (" + System.Environment.WorkingSet.ToString("#,###0") + ")" %></td>

</tr>

</table>

<hr />

<input type="button" id="cmdEnvironment" value="Show"
onclick="toggleTable('Environment');" style="width:32pt;" />

<b>Environment Variables (Environment.GetEnvironmentVariables())</b><br />

<table id="tblEnvironment" border="1px" style="display:none;">

<tr>

<td><b>Key</b></td>

<td><b>Value</b></td>

</tr>

<%foreach (DictionaryEntry de in Environment.GetEnvironmentVariables()) {%>

<tr>

<td><%= de.Key %></td>

<td><%= de.Value %></td>

</tr>

<% } %>

</table>

<hr />

<input type="button" id="cmdDNS" value="Show" onclick="toggleTable('DNS');"
style="width:32pt;" />

<b>Dns Object (System.Net.Dns)</b><br />

<table id="tblDNS" border="1px" style="display:none;">

<tr>

<td><b>Method</b></td>

<td><b>Value</b></td>

</tr>

<tr>

<td>.GetHostName()</td>

<td><%= System.Net.Dns.GetHostName() %></td>

</tr>

</table>

<hr />

<input type="button" id="cmdRequest" value="Show"
onclick="toggleTable('Request');" style="width:32pt;" />

<b>Request Object (HttpContext.Current.Request)</b><br />

<table id="tblRequest" border="1px" style="display:none;">

<tr>

<td><b>Method</b></td>

<td><b>Value</b></td>

</tr>

<tr>

<td>.AnonymousID</td>

<td><%= Request.AnonymousID %>&nbsp;</td>

</tr>

<tr>

<td>.ApplicationPath</td>

<td><%= Request.ApplicationPath %>&nbsp;</td>

</tr>

<tr>

<td>.AppRelativeCurrentExecutionFilePath</td>

<td><%= Request.AppRelativeCurrentExecutionFilePath %>&nbsp;</td>

</tr>

<tr>

<td>.CurrentExecutionFilePath</td>

<td><%= Request.CurrentExecutionFilePath %>&nbsp;</td>

</tr>

<tr>

<td>.FilePath</td>

<td><%= Request.FilePath %>&nbsp;</td>

</tr>

<tr>

<td>.IsAuthenticated</td>

<td><%= Request.IsAuthenticated %>&nbsp;</td>

</tr>

<tr>

<td>.IsLocal</td>

<td><%= Request.IsLocal %>&nbsp;</td>

</tr>

<tr>

<td>.IsSecureConnection</td>

<td><%= Request.IsSecureConnection %>&nbsp;</td>

</tr>

<tr>

<td>.Path</td>

<td><%= Request.Path %>&nbsp;</td>

</tr>

<tr>

<td>.PathInfo</td>

<td><%= Request.PathInfo %>&nbsp;</td>

</tr>

<tr>

<td>.PhysicalApplicationPath</td>

<td><%= Request.PhysicalApplicationPath %>&nbsp;</td>

</tr>

<tr>

<td>.PhysicalPath</td>

<td><%= Request.PhysicalPath %>&nbsp;</td>

</tr>

<tr>

<td>.RawUrl</td>

<td><%= Request.RawUrl %>&nbsp;</td>

</tr>

<tr>

<td>.UserAgent</td>

<td><%= Request.UserAgent %>&nbsp;</td>

</tr>

<tr>

<td>.UserHostAddress</td>

<td><%= Request.UserHostAddress %></td>

</tr>

<tr>

<td>.UserHostName</td>

<td><%= Request.UserHostName %></td>

</tr>

</table>

<hr />

<input type="button" id="cmdRequestServerVariables" value="Show"
onclick="toggleTable('RequestServerVariables');" style="width:32pt;" />

<b>Server Variables (HttpContext.Current.Request.ServerVariables)</b><br />

<table id="tblRequestServerVariables" border="1px" style="display:none;">

<tr>

<td><b>Key</b></td>

<td><b>Value</b></td>

</tr>

<%foreach (string name in HttpContext.Current.Request.ServerVariables) {%>

<tr>

<td><%= name %></td>

<td><%= Request.ServerVariables[name] %>&nbsp;</td>

</tr>

<% } %>

</table>

<hr />

<input type="button" id="cmdApplication" value="Show"
onclick="toggleTable('Application');" style="width:32pt;" />

<b>Application Variables (HttpContext.Current.Application)</b><br />

<table id="tblApplication" border="1px" style="display:none;">

<tr>

<td><b>Key</b></td>

<td><b>Value</b></td>

</tr>

<%foreach (string name in HttpContext.Current.Application) {%>

<tr>

<td><%= name %></td>

<td><%= Application[name] %></td>

</tr>

<% } %>

</table>

<hr />

<input type="button" id="cmdSession" value="Show"
onclick="toggleTable('Session');" style="width:32pt;" />

<b>Session Variables (HttpContext.Current.Session)</b><br />

<table id="tblSession" border="1px" style="display:none;">

<tr>

<td><b>Key</b></td>

<td><b>Value</b></td>

</tr>

<%foreach (string name in HttpContext.Current.Session) {%>

<tr>

<td><%= name %></td>

<td><%= Session[name] %></td>

</tr>

<% } %>

</table>

<hr />

<input type="button" id="cmdRequestCookies" value="Show"
onclick="toggleTable('RequestCookies');" style="width:32pt;" />

<b>Cookies (HttpContext.Current.Request.Cookies)</b><br />

<table id="tblRequestCookies" border="1px" style="display:none;">

<tr>

<td><b>Key</b></td>

<td><b>Value</b></td>

</tr>

<%foreach (string name in HttpContext.Current.Request.Cookies) {%>

<tr>

<td><%= name %></td>

<td><%= Request.Cookies[name] %></td>

</tr>

<% } %>

</table>

<hr />

<%

/*

'System.Web.HttpBrowserCapabilities' does not contain a definition for
'GetEnumerator'

*/

%>

<input type="button" id="cmdRequestBrowser" value="Show"
onclick="toggleTable('RequestBrowser');" style="width:32pt;" />

<b>Browser (HttpContext.Current.Request.Browser)</b><br />

<table id="tblRequestBrowser" border="1px" style="display:none;">

<tr>

<td><b>Key</b></td>

<td><b>Value</b></td>

</tr>

<tr>

<td>.ActiveXControls</td>

<td><%= HttpContext.Current.Request.Browser.ActiveXControl s %></td>

</tr>

<tr>

<td>.AOL</td>

<td><%= HttpContext.Current.Request.Browser.AOL %></td>

</tr>

<tr>

<td>.BackgroundSounds</td>

<td><%= HttpContext.Current.Request.Browser.BackgroundSoun ds %></td>

</tr>

<tr>

<td>.Beta</td>

<td><%= HttpContext.Current.Request.Browser.Beta %></td>

</tr>

<tr>

<td>.Browser</td>

<td><%= HttpContext.Current.Request.Browser.Browser %></td>

</tr>

<tr>

<td>.CDF</td>

<td><%= HttpContext.Current.Request.Browser.CDF %></td>

</tr>

<tr>

<td>.ClrVersion</td>

<td><%= HttpContext.Current.Request.Browser.ClrVersion %></td>

</tr>

<tr>

<td>.Cookies</td>

<td><%= HttpContext.Current.Request.Browser.Cookies %></td>

</tr>

<tr>

<td>.Crawler</td>

<td><%= HttpContext.Current.Request.Browser.Crawler %></td>

</tr>

<tr>

<td>.EcmaScriptVersion</td>

<td><%= HttpContext.Current.Request.Browser.EcmaScriptVers ion %></td>

</tr>

<tr>

<td>.Frames</td>

<td><%= HttpContext.Current.Request.Browser.Frames %></td>

</tr>

<tr>

<td>.JavaApplets</td>

<td><%= HttpContext.Current.Request.Browser.JavaApplets %></td>

</tr>

<tr>

<td>.JavaScript</td>

<td><%= HttpContext.Current.Request.Browser.EcmaScriptVers ion.Major >= 1
%></td>

</tr>

<tr>

<td>.MajorVersion</td>

<td><%= HttpContext.Current.Request.Browser.MajorVersion %></td>

</tr>

<tr>

<td>.MinorVersion</td>

<td><%= HttpContext.Current.Request.Browser.MinorVersion %></td>

</tr>

<tr>

<td>.MSDomVersion</td>

<td><%= HttpContext.Current.Request.Browser.MSDomVersion %></td>

</tr>

<tr>

<td>.Platform</td>

<td><%= HttpContext.Current.Request.Browser.Platform %></td>

</tr>

<tr>

<td>.Tables</td>

<td><%= HttpContext.Current.Request.Browser.Tables %></td>

</tr>

<tr>

<td>.Type</td>

<td><%= HttpContext.Current.Request.Browser.Type %></td>

</tr>

<tr>

<td>.VBScript</td>

<td><%= HttpContext.Current.Request.Browser.VBScript %></td>

</tr>

<tr>

<td>.Version</td>

<td><%= HttpContext.Current.Request.Browser.Version %></td>

</tr>

<tr>

<td>.W3CDomVersion</td>

<td><%= HttpContext.Current.Request.Browser.W3CDomVersion %></td>

</tr>

<tr>

<td>.Win16</td>

<td><%= HttpContext.Current.Request.Browser.Win16 %></td>

</tr>

<tr>

<td>.Win32</td>

<td><%= HttpContext.Current.Request.Browser.Win32 %></td>

</tr>

</table>

<hr />

<input type="button" id="cmdNavigator" value="Show"
onclick="toggleTable('Navigator');" style="width:32pt;" />

<b>Navigator Properties (javascript:navigator)</b><br />

<table id="tblNavigator" border="1px" style="display:none;">

<tr>

<td><b>Property</b></td>

<td><b>Value</b></td>

</tr>

<tr>

<td>appCodeName</td>

<td><script
type="text/javascript">document.write(navigator.appCodeName); </script></td>

</tr>

<tr>

<td>appMinorVersion</td<!--appMajorVersion doesn't exist, for some
reason!-->

<td><script
type="text/javascript">document.write(navigator.appMinorVersi on);</script></td>

</tr>

<tr>

<td>appName</td>

<td><script
type="text/javascript">document.write(navigator.appName);</script></td>

</tr>

<tr>

<td>appVersion</td>

<td><script
type="text/javascript">document.write(navigator.appVersion);</script></td>

</tr>

<tr>

<td>browserLanguage</td>

<td><script
type="text/javascript">document.write(navigator.browserLangua ge);</script></td>

</tr>

<tr>

<td>constructor</td>

<td><script
type="text/javascript">document.write(navigator.constructor); </script></td>

</tr>

<tr>

<td>cookieEnabled</td>

<td><script
type="text/javascript">document.write(navigator.cookieEnabled );</script></td>

</tr>

<tr>

<td>cpuClass</td>

<td><script
type="text/javascript">document.write(navigator.cpuClass);</script></td>

</tr>

<tr>

<td>javaEnabled()</td>

<td><script
type="text/javascript">document.write(navigator.javaEnabled() );</script></td>

</tr>

<tr>

<td>language</td>

<td><script
type="text/javascript">document.write(navigator.language);</script></td>

</tr>

<tr>

<td>onLine</td>

<td><script
type="text/javascript">document.write(navigator.onLine);</script></td>

</tr>

<tr>

<td>opsProfile</td>

<td><script
type="text/javascript">document.write(navigator.opsProfile);</script></td>

</tr>

<tr>

<td>platform</td>

<td><script
type="text/javascript">document.write(navigator.platform);</script></td>

</tr>

<tr>

<td>securityPolicy</td>

<td><script
type="text/javascript">document.write(navigator.securityPolic y);</script></td>

</tr>

<tr>

<td>systemLanguage</td>

<td><script
type="text/javascript">document.write(navigator.systemLanguag e);</script></td>

</tr>

<tr>

<td>taintEnabled()</td>

<td><script
type="text/javascript">document.write(navigator.taintEnabled( ));</script></td>

</tr>

<tr>

<td>userAgent</td>

<td><script
type="text/javascript">document.write(navigator.userAgent);</script></td>

</tr>

<tr>

<td>userLanguage</td>

<td><script
type="text/javascript">document.write(navigator.userLanguage) ;</script></td>

</tr>

<tr>

<td>userProfile</td>

<td><script
type="text/javascript">document.write(navigator.userProfile); </script></td>

</tr>

</table>

<hr />

<input type="button" id="cmdScreen" value="Show"
onclick="toggleTable('Screen');" style="width:32pt;" />

<b>Screen Properties (javascript:screen)</b><br />

<table id="tblScreen" border="1px" style="display:none;">

<tr>

<td><b>Property</b></td>

<td><b>Value</b></td>

</tr>

<tr>

<td>availHeight</td>

<td><script
type="text/javascript">document.write(screen.availHeight);</script></td>

</tr>

<tr>

<td>availLeft</td>

<td><script
type="text/javascript">document.write(screen.availLeft);</script></td>

</tr>

<tr>

<td>availTop</td>

<td><script
type="text/javascript">document.write(screen.availTop);</script></td>

</tr>

<tr>

<td>availWidth</td>

<td><script
type="text/javascript">document.write(screen.availWidth);</script></td>

</tr>

<tr>

<td>colorDepth</td>

<td><script
type="text/javascript">document.write(screen.colorDepth);</script></td>

</tr>

<tr>

<td>height</td>

<td><script
type="text/javascript">document.write(screen.height);</script></td>

</tr>

<tr>

<td>pixelDepth</td>

<td><script
type="text/javascript">document.write(screen.pixelDepth);</script></td>

</tr>

<tr>

<td>width</td>

<td><script
type="text/javascript">document.write(screen.width);</script></td>

</tr>

</table>

</form>

</body>

</html>
Aug 20 '06 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Jason Burr | last post by:
I keep getting a server error 400 - Bad Request with the code below. xmlDoc is the MSXML.DOMDocument populated with the xml data to submit. That data is well formed and works fine if I urlencode...
15
by: Thomas Scheiderich | last post by:
I am trying to understand Session variables and ran into a question on how they work with data that is passed. I have an HTM file that calls an ASP file and sends the name either by GET or POST....
1
by: Jack | last post by:
Hi All, I've a problem using IE web browser component. I need to send a file into a server and to receive progress information during the upload. The IE webbrowser component have a nice event to...
2
by: Fatih BOY | last post by:
Hi, I want to send a report from a windows application to a web page like 'report.asp' Currently i can send it via post method with a context like local=En&Username=fatih&UserId=45&Firm=none...
2
by: Matt | last post by:
When we submit the form data to another page, we usually do the following: <form action="display.aspx" method="post"> will submit the form data and open display.asp in the current browser ...
5
by: Vishal | last post by:
Hello, I already asked this question in the ASP.NET forums, but no help came. So I am hoping that somebody can help me out. This is really very URGENT me. For my e-commerce application, I...
5
by: Bint | last post by:
Hello, I'm new to web programming, and I've been looking all day on the web for an answer to this question. I'm trying to send some binary data, a relatively large amount (~128K), to a PHP...
1
by: grande news | last post by:
Hello, I am trying to send a bunch of data via a single POST message, from a wireless device to a PHP script on my server. Some of this data is base64_encoded binary image data. Basically, I...
6
by: CindyH | last post by:
Hi I'm not sure whether I should send this as a new message or use the one I've been using but... I'm using vb.net 2.0 - My problem is I need to send something like this: 'dim encodedstring =...
2
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 7 Feb 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:30 (7.30PM). In this month's session, the creator of the excellent VBE...
0
by: DolphinDB | last post by:
The formulas of 101 quantitative trading alphas used by WorldQuant were presented in the paper 101 Formulaic Alphas. However, some formulas are complex, leading to challenges in calculation. Take...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
by: Aftab Ahmad | last post by:
Hello Experts! I have written a code in MS Access for a cmd called "WhatsApp Message" to open WhatsApp using that very code but the problem is that it gives a popup message everytime I clicked on...
0
by: Aftab Ahmad | last post by:
So, I have written a code for a cmd called "Send WhatsApp Message" to open and send WhatsApp messaage. The code is given below. Dim IE As Object Set IE =...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: marcoviolo | last post by:
Dear all, I would like to implement on my worksheet an vlookup dynamic , that consider a change of pivot excel via win32com, from an external excel (without open it) and save the new file into a...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.