i did not use any session state setting
Sarfarj Ahmed
i did not use any session state setting
Sarfarj Ahmed
my web.cofig file as follows decryption="AES" validation="SHA1" decryptionKey="96F95BF54FCDB28DC6BADE1162FE4A130E5417EEEFB3DEDFFD94A90AD5D62143" validationKey="BBEC4E221B6735DAF71AA30C715AC001591D718F3A4FD3C5BE71985FB5F94401" />
Sarfarj Ahmed
thank you
Sarfarj Ahmed
I have set timeout="120" in my web.config file, but why it has been auto logged out between 10 to 20 mins. Thanks in Advance
Sarfarj Ahmed
Hello Everybody I bought some https space For login I want to send customer to https://........../login.aspx After Login succesful I want to redirect page form https to http My question is: After redirect from https how http will know customer is logged in? As I think on my http master page I can use some property to keep Request.QueryString value. There is some trick....... Could you pleae give me idea Thanks is Advance
Sarfarj Ahmed
No worries! Just done it. Thanks
Sarfarj Ahmed
Hello Everybody I have put a Button name btnDelete into Template Field also I put AJAX Confirm button extender. What I want to do is when I click btnDelete then it will ask whether I want to delete that row or not. How Can I do it? If you have any example then it will be really greatful Thanks in Advance Sarfaraj
Sarfarj Ahmed
Hello Everybody I need some suggestion about HTTP and HTTPS I have bought some HTTPS space, so I can send customer to https for payments, login and register. For examples: When customer clicks Payments Button then it should be redirect to https://secure/mydomain/payment.aspx As I know I have to send payments amount (£10.00) Q1: What else I do need to send on https://secure/mydomain/payment.aspx from my http://mydomain.co.uk Q2: After payment confirmation how do I know which customer make payment? As I bought the package of PayPal Web Payments Pro so customer will make payments from my website. So far what I have done is: 1.When customer click login then it goes to https 2.After login successful I have kept customer on https not redirect to http (I know its not a good idea) I am waiting for your wise suggestion Thnaks in Advance
Sarfarj Ahmed
Dear Yusuf Thank you very much for your help Regards Sarfaraj
Sarfarj Ahmed
Hello Everybody For Online Ordering System there is some criteria like 1. Add Product into Shopping Cart (product.aspx) 2. Shipping Address (shipping.aspx) 3. Make Payments (payments.aspx) 4. Confirmation (confirmation) As Navaneeth said that keep order information into session table is not a good idea. Now I facing some problem to keep pre-order information into tempOrder data table. So I need to know how will I handle the following information. 1. After adding product into shopping cart if the customer close the window then how will I delete that order information. (i do have custID into tempOrder table). How do I know browser is closed by customer or there is an internet connection problem. 2. All those 4 criteria has to be success before placing an order. 3. Mean anything happen before that time I have to delete order information for that customer Please give me some idea. Thanks in Advance
Sarfarj Ahmed
Hello Everybody i kept the following code into web.config
<authentication>>
and my login.vb as follows
FormsAuthentication.RedirectFromLoginPage(_loginCheck.memberID, False)
I am developing an online ordering system but Im a bit confused, why I am confused? I am using a session table to keep order information. At the same time more customer logged in into system and adding product into shopping basket. My question is.. Wheather customer will share the same session table or diffrent session table will be create for diffrent customer? Thanks in Advance
Sarfarj Ahmed
more senario for i = 0 to aList.Count - 2 j= i + 1 to aList.Count - 1 aa(i) = myFunction (aList(0,0), aList(0,1), aList(1,0), aList(1,1) like this
Sarfarj Ahmed
Dear Yusuf Thanks for your reply. There will be three items into aList. Like below: aList(0) will keep two values 7 and 8 aList(1) will keep two values 4 and 6 aList(2) will keep two values 5 and 9 I have to call a function which will take 4 values from aList (every single aList row keep 2 values) First Time I have to send value from aList(0) and aList(1) Second Time I have to send value from aList(0) and aList(2) Third Time I have to send value from aList(1) and aList(2) Thanks
Sarfarj Ahmed
Hello Everybody My ArrayList (name aList) is Follows: aList(0) = 4, 5 aList(1) = 6, 7 aList(2) = 8, 9 What I want to call function as below:
Dim aa() As String
for i = 0 to aList.Count - 1
aa(i) = myFunction (aList(0,0), aList(0,1), aList(1,0), aList(1,1))
Next
Every Single time myFunction will take 4 values from aList For Example: i = 0 , will take value from aList(0) and aList(1) i = 1 , will take value from aList(0) and aList(2) i = 2 , will take value from aList(1) and aList(2) Please tell me some logic Thanks Sarfaraj
Sarfarj Ahmed
Hello Everybody I have 4 radio button on my page and their Group Name grpSelection. 'On button click' How do I know which radio button is seleted? Thanks Sarfaraj
Sarfarj Ahmed
Hello Everybody I bought some SSL secure web space. When i click login button from http://www.mywebsite.co.uk it goes to https://secured-url.com/myfolder.login.aspx but every single time the following message is coming: This page contains secure and non secure items, do u want to open non secure items? I dont want to show any message. Please give me some instructions Thanks Sarfaraj
Sarfarj Ahmed
Hello Everybody I am using FormsAuthentication on web.confiq file. I want to send back to previus page if login successful from login.aspx Thanks Sarfaraj
Sarfarj Ahmed
Thanks for your quick reply. I am a bit confused because: 1. My secured folder is hosted into another domain Eg: https://anotherdomain.com/myfolder 2. All my secure pages are inside myfolder. Eg. login.aspx 3. What I want to it is: 3.1 If log in successful then it will send back to mydomain.com
Sarfarj Ahmed
Hello Everybody 1. Customer click the login button from http://mydomain.com 2. After clicking the login button from mydomain.com it goes to https://anotherdomin.com/myfolder/login.aspx 3. If login successfull then it will automatic send back to mydomain.com with UserID and Name Please tell me the way to do it. waiting for your valuabale advice Thanks in Advance Sarfaraj
Sarfarj Ahmed