473,415 Members | 1,545 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,415 software developers and data experts.

Problem with sending data via the Post method. (URGENT)

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
Nov 19 '05 #1
5 3000
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

Nov 19 '05 #2
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

.

Nov 19 '05 #3
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 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

.

Nov 19 '05 #4
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
>
>
>.
>

.

Nov 19 '05 #5
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 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 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
>
>
>.
>

.

Nov 19 '05 #6

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

Similar topics

3
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...
2
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...
1
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...
4
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.
4
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...
10
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...
0
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...
8
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...
7
xNephilimx
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...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

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.