[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

microsoft.public.dotnet.framework.aspnet.mobile

K600i is sending wrong session id

Niko Grobelsek

10/13/2006 10:11:00 AM


I have a problem with some phones which are sending my session id in "xxxxxx"
(inside quotation marks) and the result is that asp.net always gives new
session to the phone. IS there a way I can somhowe intercept and fix the
sessionid on my own or someother way around this problem?

tnx


1 Answer

Jay

11/1/2006 4:55:00 AM

0

Hi,

You can use Encode/Decode functions to fix the below problem.

For example,

For Encode $str =~ s/\"/\"/g; and for Decode $str =~ s/\"/\"/g;

When you pass the session id use Encode and use Decode to use the same
session id

got my point

"Niko Grobelsek" wrote:

>
> I have a problem with some phones which are sending my session id in "xxxxxx"
> (inside quotation marks) and the result is that asp.net always gives new
> session to the phone. IS there a way I can somhowe intercept and fix the
> sessionid on my own or someother way around this problem?
>
> tnx
>
>
>