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 need to send data from my
server via the post method to the payment server. The
payment server does not run asp.net. I dont know what they
run. The payment server then returns to my server with the
result in the qs.
Here is the code, which I use to send the data to the
server:
Private Sub Page_Load(ByVal sender As System.Object, ByVal
e As System.EventArgs) Handles MyBase.Load
Dim data() As String =
{"name=vishal", "Joined=15May2004", "TotalPosts=112"}
PagePipe("http://www.site.com/file.htm", Data)
End Sub
Private Sub PagePipe(ByVal URL As String, ByVal data
As String())
Dim HWR As System.Net.HttpWebRequest
Dim sr As System.IO.StreamReader
Dim s, sData As String
Dim enc As System.Text.ASCIIEncoding
Dim b() As Byte
' set up request
HWR = System.Net.HttpWebRequest.Create(URL)
HWR.Method = "POST"
For Each s In data
sData += s + "&"
Next
sData = sData.Trim("&")
enc = New System.Text.ASCIIEncoding()
b = enc.GetBytes(sData)
HWR.ContentType = "application/x-www-form-
urlencoded"
HWR.ContentLength = b.Length
HWR.GetRequestStream().Write(b, 0, b.Length)
' get response
Response.Clear()
Response.Buffer = False
Response.ContentType = HWR.ContentType
sr = New System.IO.StreamReader(HWR.GetResponse
().GetResponseStream)
Response.Write(sr.ReadToEnd)
Response.End()
End Sub
The user must login before he can make any purchase. Once
he has logged in, I store the userid in a session object.
However when I use the above code, then I am somehow
loosing the session variable value or it is not
recognized. Now the return page is a page, which always
check at the beginning if the user is logged in or not.
Unfortunaly now the user is redirected to the login.aspx
instead of the result.aspx. If I do a response.write for
the userid then it is empty. Can somebody see why this is
happens and how it can be avoided?
Thanks in advance 5 2942
Hi,
Does your site require your user to login everytime they open a new browser?
Are you using Forms Authentication? If so then in your application there is
a call somewhere to SetAuthCookie(). Set the final parameter to True:
FormsAuthentication.SetAuthCookie(txtUserName, True)
Now give it a try. Does it work? If so then when your e-commerce server
passes back to you would need to pass back their credentials in order to log
them in. In order to make it more secure you should pass back and ID with
which you can then retrieve their credentials and re-log them in. I think.
I'm not exactly sure how things are working. Could post more information?
From your code it doesn't even appear they are leaving your server so I
can't imagine why they are losing Session. This was just a wild guess.
Good luck! Ken.
--
Ken Dopierala Jr.
For great ASP.Net web hosting try: http://www.webhost4life.com/default.asp?refid=Spinlight
If you sign up under me and need help, email me.
"Vishal" <an*******@discussions.microsoft.com> wrote in message
news:00****************************@phx.gbl... 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 need to send data from my server via the post method to the payment server. The payment server does not run asp.net. I dont know what they run. The payment server then returns to my server with the result in the qs.
Here is the code, which I use to send the data to the server:
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Dim data() As String = {"name=vishal", "Joined=15May2004", "TotalPosts=112"} PagePipe("http://www.site.com/file.htm", Data) End Sub Private Sub PagePipe(ByVal URL As String, ByVal data As String()) Dim HWR As System.Net.HttpWebRequest Dim sr As System.IO.StreamReader Dim s, sData As String Dim enc As System.Text.ASCIIEncoding Dim b() As Byte ' set up request HWR = System.Net.HttpWebRequest.Create(URL) HWR.Method = "POST" For Each s In data sData += s + "&" Next sData = sData.Trim("&") enc = New System.Text.ASCIIEncoding() b = enc.GetBytes(sData) HWR.ContentType = "application/x-www-form- urlencoded" HWR.ContentLength = b.Length HWR.GetRequestStream().Write(b, 0, b.Length) ' get response Response.Clear() Response.Buffer = False Response.ContentType = HWR.ContentType sr = New System.IO.StreamReader(HWR.GetResponse ().GetResponseStream) Response.Write(sr.ReadToEnd) Response.End() End Sub
The user must login before he can make any purchase. Once he has logged in, I store the userid in a session object. However when I use the above code, then I am somehow loosing the session variable value or it is not recognized. Now the return page is a page, which always check at the beginning if the user is logged in or not. Unfortunaly now the user is redirected to the login.aspx instead of the result.aspx. If I do a response.write for the userid then it is empty. Can somebody see why this is happens and how it can be avoided?
Thanks in advance
I am using a simple session authentication. User enters
login and pw which I compare with my database. Once he has
entered the correct value, I store the userid in the
session object, which indicates that he is logged in.
Thanks for your interest. Please let me know if you need
any other information. I really need to solve this issue. -----Original Message----- Hi,
Does your site require your user to login everytime they
open a new browser?Are you using Forms Authentication? If so then in your
application there isa call somewhere to SetAuthCookie(). Set the final
parameter to True: FormsAuthentication.SetAuthCookie(txtUserName, True)
Now give it a try. Does it work? If so then when your e-
commerce serverpasses back to you would need to pass back their
credentials in order to logthem in. In order to make it more secure you should pass
back and ID withwhich you can then retrieve their credentials and re-log
them in. I think.I'm not exactly sure how things are working. Could post
more information?From your code it doesn't even appear they are leaving
your server so Ican't imagine why they are losing Session. This was just
a wild guess.Good luck! Ken.
-- Ken Dopierala Jr. For great ASP.Net web hosting try: http://www.webhost4life.com/default.asp?refid=Spinlight If you sign up under me and need help, email me.
"Vishal" <an*******@discussions.microsoft.com> wrote in
messagenews:00****************************@phx.gbl... 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 need to send data from
my server via the post method to the payment server. The payment server does not run asp.net. I dont know what
they run. The payment server then returns to my server with
the result in the qs.
Here is the code, which I use to send the data to the server:
Private Sub Page_Load(ByVal sender As System.Object,
ByVal e As System.EventArgs) Handles MyBase.Load Dim data() As String = {"name=vishal", "Joined=15May2004", "TotalPosts=112"} PagePipe("http://www.site.com/file.htm", Data) End Sub Private Sub PagePipe(ByVal URL As String, ByVal data As String()) Dim HWR As System.Net.HttpWebRequest Dim sr As System.IO.StreamReader Dim s, sData As String Dim enc As System.Text.ASCIIEncoding Dim b() As Byte ' set up request HWR = System.Net.HttpWebRequest.Create(URL) HWR.Method = "POST" For Each s In data sData += s + "&" Next sData = sData.Trim("&") enc = New System.Text.ASCIIEncoding() b = enc.GetBytes(sData) HWR.ContentType = "application/x-www-form- urlencoded" HWR.ContentLength = b.Length HWR.GetRequestStream().Write(b, 0, b.Length) ' get response Response.Clear() Response.Buffer = False Response.ContentType = HWR.ContentType sr = New System.IO.StreamReader(HWR.GetResponse ().GetResponseStream) Response.Write(sr.ReadToEnd) Response.End() End Sub
The user must login before he can make any purchase.
Once he has logged in, I store the userid in a session
object. However when I use the above code, then I am somehow loosing the session variable value or it is not recognized. Now the return page is a page, which always check at the beginning if the user is logged in or not. Unfortunaly now the user is redirected to the login.aspx instead of the result.aspx. If I do a response.write for the userid then it is empty. Can somebody see why this
is happens and how it can be avoided?
Thanks in advance
.
Hi,
Okay, let's narrow this down. In your page load event you are posting to
your ecommerce server. By the time it gets back to your user they have lost
their session? I don't see what is happening. Comment out your entire page
load event and do a response.write(sessionvalue). Do they still have their
session? If so, process your ecommerce request. But instead of sending
back everything you receive in your response.writes just do a
response.write(sessionvalue). If you still have access to the session then
it is your response.writes that send back the entire response you get from
the ecommerce server that is causing you the problems. Hopefully someone
else has experience with this and can just tell you what is wrong. What I
would like to do is have you start commenting out code until you figure out
where you are losing the session. Once that is figured out we can come up
with a solution. Good luck! Ken.
--
Ken Dopierala Jr.
For great ASP.Net web hosting try: http://www.webhost4life.com/default.asp?refid=Spinlight
If you sign up under me and need help, email me.
"Vishal" <an*******@discussions.microsoft.com> wrote in message
news:2e****************************@phx.gbl... I am using a simple session authentication. User enters login and pw which I compare with my database. Once he has entered the correct value, I store the userid in the session object, which indicates that he is logged in.
Thanks for your interest. Please let me know if you need any other information. I really need to solve this issue.
-----Original Message----- Hi,
Does your site require your user to login everytime they open a new browser?Are you using Forms Authentication? If so then in your application there isa call somewhere to SetAuthCookie(). Set the final parameter to True: FormsAuthentication.SetAuthCookie(txtUserName, True)
Now give it a try. Does it work? If so then when your e-
commerce serverpasses back to you would need to pass back their credentials in order to logthem in. In order to make it more secure you should pass back and ID withwhich you can then retrieve their credentials and re-log them in. I think.I'm not exactly sure how things are working. Could post more information?From your code it doesn't even appear they are leaving your server so Ican't imagine why they are losing Session. This was just a wild guess.Good luck! Ken.
-- Ken Dopierala Jr. For great ASP.Net web hosting try: http://www.webhost4life.com/default.asp?refid=Spinlight If you sign up under me and need help, email me.
"Vishal" <an*******@discussions.microsoft.com> wrote in messagenews:00****************************@phx.gbl... 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 need to send data from my server via the post method to the payment server. The payment server does not run asp.net. I dont know what they run. The payment server then returns to my server with the result in the qs.
Here is the code, which I use to send the data to the server:
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Dim data() As String = {"name=vishal", "Joined=15May2004", "TotalPosts=112"} PagePipe("http://www.site.com/file.htm", Data) End Sub Private Sub PagePipe(ByVal URL As String, ByVal data As String()) Dim HWR As System.Net.HttpWebRequest Dim sr As System.IO.StreamReader Dim s, sData As String Dim enc As System.Text.ASCIIEncoding Dim b() As Byte ' set up request HWR = System.Net.HttpWebRequest.Create(URL) HWR.Method = "POST" For Each s In data sData += s + "&" Next sData = sData.Trim("&") enc = New System.Text.ASCIIEncoding() b = enc.GetBytes(sData) HWR.ContentType = "application/x-www-form- urlencoded" HWR.ContentLength = b.Length HWR.GetRequestStream().Write(b, 0, b.Length) ' get response Response.Clear() Response.Buffer = False Response.ContentType = HWR.ContentType sr = New System.IO.StreamReader(HWR.GetResponse ().GetResponseStream) Response.Write(sr.ReadToEnd) Response.End() End Sub
The user must login before he can make any purchase. Once he has logged in, I store the userid in a session object. However when I use the above code, then I am somehow loosing the session variable value or it is not recognized. Now the return page is a page, which always check at the beginning if the user is logged in or not. Unfortunaly now the user is redirected to the login.aspx instead of the result.aspx. If I do a response.write for the userid then it is empty. Can somebody see why this is happens and how it can be avoided?
Thanks in advance
.
Hi Ken,
here is what happens after the test. If I send the data
via the post method and do a response.write of the
reesponse, then there is no session id. If I call the page
(result.aspx) directly after the purchase has been done,
then it still has the session ID. So the problem is that
the response which I got back from the server doesnt know
or recognize the session id. Can you please help me out
here?
Thanks in advance -----Original Message----- Hi,
Okay, let's narrow this down. In your page load event
you are posting toyour ecommerce server. By the time it gets back to your
user they have losttheir session? I don't see what is happening. Comment
out your entire pageload event and do a response.write(sessionvalue). Do
they still have theirsession? If so, process your ecommerce request. But
instead of sendingback everything you receive in your response.writes just
do aresponse.write(sessionvalue). If you still have access
to the session thenit is your response.writes that send back the entire
response you get fromthe ecommerce server that is causing you the problems.
Hopefully someoneelse has experience with this and can just tell you what
is wrong. What Iwould like to do is have you start commenting out code
until you figure outwhere you are losing the session. Once that is figured
out we can come upwith a solution. Good luck! Ken.
-- Ken Dopierala Jr. For great ASP.Net web hosting try: http://www.webhost4life.com/default.asp?refid=Spinlight If you sign up under me and need help, email me.
"Vishal" <an*******@discussions.microsoft.com> wrote in
messagenews:2e****************************@phx.gbl... I am using a simple session authentication. User enters login and pw which I compare with my database. Once he
has entered the correct value, I store the userid in the session object, which indicates that he is logged in.
Thanks for your interest. Please let me know if you need any other information. I really need to solve this
issue. >-----Original Message----- >Hi, > >Does your site require your user to login everytime
they open a new browser? >Are you using Forms Authentication? If so then in your application there is >a call somewhere to SetAuthCookie(). Set the final parameter to True: > >FormsAuthentication.SetAuthCookie(txtUserName, True) > >Now give it a try. Does it work? If so then when
your e- commerce server >passes back to you would need to pass back their credentials in order to log >them in. In order to make it more secure you should
pass back and ID with >which you can then retrieve their credentials and re-
log them in. I think. >I'm not exactly sure how things are working. Could
post more information? >From your code it doesn't even appear they are leaving your server so I >can't imagine why they are losing Session. This was
just a wild guess. >Good luck! Ken. > >-- >Ken Dopierala Jr. >For great ASP.Net web hosting try: >http://www.webhost4life.com/default.asp?refid=Spinlight >If you sign up under me and need help, email me. > >"Vishal" <an*******@discussions.microsoft.com> wrote in message >news:00****************************@phx.gbl... >> 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 need to send data
from my >> server via the post method to the payment server. The >> payment server does not run asp.net. I dont know what they >> run. The payment server then returns to my server
with the >> result in the qs. >> >> Here is the code, which I use to send the data to the >> server: >> >> Private Sub Page_Load(ByVal sender As System.Object, ByVal >> e As System.EventArgs) Handles MyBase.Load >> Dim data() As String = >> {"name=vishal", "Joined=15May2004", "TotalPosts=112"} >> PagePipe("http://www.site.com/file.htm",
Data) >> End Sub >> Private Sub PagePipe(ByVal URL As String, ByVal
data >> As String()) >> Dim HWR As System.Net.HttpWebRequest >> Dim sr As System.IO.StreamReader >> Dim s, sData As String >> Dim enc As System.Text.ASCIIEncoding >> Dim b() As Byte >> ' set up request >> HWR = System.Net.HttpWebRequest.Create(URL) >> HWR.Method = "POST" >> For Each s In data >> sData += s + "&" >> Next >> sData = sData.Trim("&") >> enc = New System.Text.ASCIIEncoding() >> b = enc.GetBytes(sData) >> HWR.ContentType = "application/x-www-form- >> urlencoded" >> HWR.ContentLength = b.Length >> HWR.GetRequestStream().Write(b, 0, b.Length) >> ' get response >> Response.Clear() >> Response.Buffer = False >> Response.ContentType = HWR.ContentType >> sr = New System.IO.StreamReader
(HWR.GetResponse >> ().GetResponseStream) >> Response.Write(sr.ReadToEnd) >> Response.End() >> End Sub >> >> The user must login before he can make any purchase. Once >> he has logged in, I store the userid in a session object. >> However when I use the above code, then I am somehow >> loosing the session variable value or it is not >> recognized. Now the return page is a page, which
always >> check at the beginning if the user is logged in or
not. >> Unfortunaly now the user is redirected to the
login.aspx >> instead of the result.aspx. If I do a response.write
for >> the userid then it is empty. Can somebody see why
this is >> happens and how it can be avoided? >> >> Thanks in advance > > >. >
.
Hi,
I think the problem is that when you are doing your Post you can't use your
users session. You would actually be creating an entirely new session.
When you redirect to result.aspx you are back to using your users session.
I can't see a way of doing what you are trying to do from the server. With
my ecommerce sites I send my processor the amount of the purchase and a
description (usually an Invoice #). I also send the processor two URLs.
The processor then redirects to one URL upon success and to the other upon
failure. Once that redirection happens the user is back to using their own
session on my site.
All I can think of is after you do your post don't Response.Write the entire
message to the user. Find what you need in it and then just put that in a
label or textbox or cell or something. I post to other sites behind the
scenes all the time to grab information for my user but I don't send back
the entire contents of that response. For one thing it would mess up my
ASP.Net Form tag, for another the content type I get back from my post is
many times not the same content type my user requested my page with in their
browser. There is a very good chance that by doing what you are doing you
are messing up not only your Form tag but also possibly your view state and
if you are using cookieless sessions this could be why you are losing your
session state. I hope this helps. Good luck! Ken.
--
Ken Dopierala Jr.
For great ASP.Net web hosting try: http://www.webhost4life.com/default.asp?refid=Spinlight
If you sign up under me and need help, email me.
"Vishal" <an*******@discussions.microsoft.com> wrote in message
news:0a****************************@phx.gbl... Hi Ken,
here is what happens after the test. If I send the data via the post method and do a response.write of the reesponse, then there is no session id. If I call the page (result.aspx) directly after the purchase has been done, then it still has the session ID. So the problem is that the response which I got back from the server doesnt know or recognize the session id. Can you please help me out here?
Thanks in advance
-----Original Message----- Hi,
Okay, let's narrow this down. In your page load event you are posting toyour ecommerce server. By the time it gets back to your user they have losttheir session? I don't see what is happening. Comment out your entire pageload event and do a response.write(sessionvalue). Do they still have theirsession? If so, process your ecommerce request. But instead of sendingback everything you receive in your response.writes just do aresponse.write(sessionvalue). If you still have access to the session thenit is your response.writes that send back the entire response you get fromthe ecommerce server that is causing you the problems. Hopefully someoneelse has experience with this and can just tell you what is wrong. What Iwould like to do is have you start commenting out code until you figure outwhere you are losing the session. Once that is figured out we can come upwith a solution. Good luck! Ken.
-- Ken Dopierala Jr. For great ASP.Net web hosting try: http://www.webhost4life.com/default.asp?refid=Spinlight If you sign up under me and need help, email me.
"Vishal" <an*******@discussions.microsoft.com> wrote in messagenews:2e****************************@phx.gbl... I am using a simple session authentication. User enters login and pw which I compare with my database. Once he has entered the correct value, I store the userid in the session object, which indicates that he is logged in.
Thanks for your interest. Please let me know if you need any other information. I really need to solve this issue. >-----Original Message----- >Hi, > >Does your site require your user to login everytime they open a new browser? >Are you using Forms Authentication? If so then in your application there is >a call somewhere to SetAuthCookie(). Set the final parameter to True: > >FormsAuthentication.SetAuthCookie(txtUserName, True) > >Now give it a try. Does it work? If so then when your e- commerce server >passes back to you would need to pass back their credentials in order to log >them in. In order to make it more secure you should pass back and ID with >which you can then retrieve their credentials and re- log them in. I think. >I'm not exactly sure how things are working. Could post more information? >From your code it doesn't even appear they are leaving your server so I >can't imagine why they are losing Session. This was just a wild guess. >Good luck! Ken. > >-- >Ken Dopierala Jr. >For great ASP.Net web hosting try: >http://www.webhost4life.com/default.asp?refid=Spinlight >If you sign up under me and need help, email me. > >"Vishal" <an*******@discussions.microsoft.com> wrote in message >news:00****************************@phx.gbl... >> 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 need to send data from my >> server via the post method to the payment server. The >> payment server does not run asp.net. I dont know what they >> run. The payment server then returns to my server with the >> result in the qs. >> >> Here is the code, which I use to send the data to the >> server: >> >> Private Sub Page_Load(ByVal sender As System.Object, ByVal >> e As System.EventArgs) Handles MyBase.Load >> Dim data() As String = >> {"name=vishal", "Joined=15May2004", "TotalPosts=112"} >> PagePipe("http://www.site.com/file.htm", Data) >> End Sub >> Private Sub PagePipe(ByVal URL As String, ByVal data >> As String()) >> Dim HWR As System.Net.HttpWebRequest >> Dim sr As System.IO.StreamReader >> Dim s, sData As String >> Dim enc As System.Text.ASCIIEncoding >> Dim b() As Byte >> ' set up request >> HWR = System.Net.HttpWebRequest.Create(URL) >> HWR.Method = "POST" >> For Each s In data >> sData += s + "&" >> Next >> sData = sData.Trim("&") >> enc = New System.Text.ASCIIEncoding() >> b = enc.GetBytes(sData) >> HWR.ContentType = "application/x-www-form- >> urlencoded" >> HWR.ContentLength = b.Length >> HWR.GetRequestStream().Write(b, 0, b.Length) >> ' get response >> Response.Clear() >> Response.Buffer = False >> Response.ContentType = HWR.ContentType >> sr = New System.IO.StreamReader (HWR.GetResponse >> ().GetResponseStream) >> Response.Write(sr.ReadToEnd) >> Response.End() >> End Sub >> >> The user must login before he can make any purchase. Once >> he has logged in, I store the userid in a session object. >> However when I use the above code, then I am somehow >> loosing the session variable value or it is not >> recognized. Now the return page is a page, which always >> check at the beginning if the user is logged in or not. >> Unfortunaly now the user is redirected to the login.aspx >> instead of the result.aspx. If I do a response.write for >> the userid then it is empty. Can somebody see why this is >> happens and how it can be avoided? >> >> Thanks in advance > > >. >
. This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
by: TekWiz |
last post by:
I've got a system that automatically generates a form. I have it set
up so that the backend will return to the inital form page with an
error object in sessions data (assuming the backend detected...
|
by: Kingdom |
last post by:
I have a SelectBoxes.asp page that is working with multiple selection
dropdown boxes to extract data and total the selection prices.
Tom & Bob were kind enough to give me a big help getting this...
|
by: Stephen Adam |
last post by:
Hi there,
I've just started a c# project at work where I cannot use Visual Studio. I
am trying to pass variables from one form to another. When I try to create
an instance of the sending class...
|
by: Sačo Zagoranski |
last post by:
Hi!
I'm writing a simple 3D First person shooter game. It is a multiplayer
game, where all the players connect
to one server.
|
by: yaron |
last post by:
Hi,
I have a problem when sending data over TCP socket from c# client to java
server.
the connection established ok, but i can't send data from c# client to java
server.
it's work ok with...
|
by: Danny |
last post by:
I am working on a project where I will receive xml documents from clients
machines as a byte array. They will use the web browser navigate method to
post the data to my ASP.NET page. I then pick up...
|
by: uday |
last post by:
hi all,
i am getting problem on QuerySibling(...) method of PropertyPage please tell
me, i am writing QuerySibling(...) method in PropertyPage named two and
sending some Data to PropertyPage...
|
by: Mike Owen |
last post by:
Hi,
I am using the following code to send email on a Windows 2003 Web Server:
Imports System.Net.Mail
........
Dim msgmail As New MailMessage
msgmail.To.Add(New...
|
by: xNephilimx |
last post by:
lHi guys!
I'm having a little problem that's getting on my nerves, I couldn't find a solution, I also tryed googling it and I found nothing... (my field of expertise is in AS 2 and 3, but I still...
|
by: isladogs |
last post by:
The next Access Europe meeting will be on Wednesday 2 August 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM)
The start time is equivalent to 19:00 (7PM) in Central...
|
by: erikbower65 |
last post by:
Using CodiumAI's pr-agent is simple and powerful. Follow these steps:
1. Install CodiumAI CLI: Ensure Node.js is installed, then run 'npm install -g codiumai' in the terminal.
2. Connect to...
|
by: linyimin |
last post by:
Spring Startup Analyzer generates an interactive Spring application startup report that lets you understand what contributes to the application startup time and helps to optimize it. Support for...
|
by: erikbower65 |
last post by:
Here's a concise step-by-step guide for manually installing IntelliJ IDEA:
1. Download: Visit the official JetBrains website and download the IntelliJ IDEA Community or Ultimate edition based on...
|
by: isladogs |
last post by:
The next Access Europe meeting will be on Wednesday 6 Sept 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM)
The start time is equivalent to 19:00 (7PM) in Central...
|
by: Taofi |
last post by:
I try to insert a new record but the error message says the number of query names and destination fields are not the same
This are my field names
ID, Budgeted, Actual, Status and Differences
...
|
by: lllomh |
last post by:
How does React native implement an English player?
|
by: Mushico |
last post by:
How to calculate date of retirement from date of birth
|
by: DJRhino |
last post by:
Was curious if anyone else was having this same issue or not....
I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...
| |