Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
S

Sarfaraj Ahmed

@Sarfaraj Ahmed
About
Posts
179
Topics
91
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • session time out problem
    S Sarfaraj Ahmed

    i did not use any session state setting

    Sarfarj Ahmed

    ASP.NET help

  • session time out problem
    S Sarfaraj Ahmed

    my web.cofig file as follows decryption="AES" validation="SHA1" decryptionKey="96F95BF54FCDB28DC6BADE1162FE4A130E5417EEEFB3DEDFFD94A90AD5D62143" validationKey="BBEC4E221B6735DAF71AA30C715AC001591D718F3A4FD3C5BE71985FB5F94401" />

    Sarfarj Ahmed

    ASP.NET help

  • session time out problem
    S Sarfaraj Ahmed

    i have followed asp.net security video from asp.net website and I have done samething as they said on video.

    Sarfarj Ahmed

    ASP.NET help

  • After login successful redirect from https to http
    S Sarfaraj Ahmed

    thank you

    Sarfarj Ahmed

    ASP.NET question sales

  • session time out problem
    S Sarfaraj 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

    ASP.NET help

  • After login successful redirect from https to http
    S Sarfaraj 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

    ASP.NET question sales

  • Gridview Template Filed Button Command
    S Sarfaraj Ahmed

    No worries! Just done it. Thanks

    Sarfarj Ahmed

    ASP.NET question tutorial

  • Gridview Template Filed Button Command
    S Sarfaraj 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

    ASP.NET question tutorial

  • Redirect to or from HTTPS
    S Sarfaraj 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

    ASP.NET question sales

  • Save and Delete Data
    S Sarfaraj Ahmed

    Dear Yusuf Thank you very much for your help Regards Sarfaraj

    Sarfarj Ahmed

    ASP.NET sales help question

  • Save and Delete Data
    S Sarfaraj 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

    ASP.NET sales help question

  • Session ID
    S Sarfaraj 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

    ASP.NET question security sales

  • ArrayList looping
    S Sarfaraj 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

    ASP.NET tutorial

  • ArrayList looping
    S Sarfaraj 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

    ASP.NET tutorial

  • ArrayList looping
    S Sarfaraj 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

    ASP.NET tutorial

  • Radio Button Selection
    S Sarfaraj 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

    ASP.NET question

  • Contains both secure and non secure items
    S Sarfaraj 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

    ASP.NET com security question

  • Send back to previous page using FormsAuthentication
    S Sarfaraj 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

    ASP.NET

  • https to http
    S Sarfaraj 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

    ASP.NET com sales

  • https to http
    S Sarfaraj 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

    ASP.NET com sales
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups