Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by manishsawant

  1. manishsawant

    Restrict second user with the same credentials to login

    Hi, "They can just kick each other out repeatedly" makes sense to me. Today we just build the change password page. Its a investment banking site, so i wanted to be extra cautious. You are right the administrator should take care of the intruders. Let me discuss this with the technical heads...
  2. manishsawant

    Restrict second user with the same credentials to login

    Hi, Thanks for your advice. You say that after checking ClientIPs(etc) with the same UID warn the user. So after warning what will happen. Can both the users use the system? Or is it the latest user can access the system and the older user will be redirect to the login page which can be done...
  3. manishsawant

    Restrict second user with the same credentials to login

    Hi, When ever the user try to do anything on the site it will be redirected. I need to check if he is a valid user or not. It is important to notify the user because the user will understand that someone is using his credentials and in case of malicious use the actual user can contact the...
  4. manishsawant

    Restrict second user with the same credentials to login

    Hi Guys, Thanks for the responses. The Login web service is used by all the applications so even we have to use it. The Web service returns a GUID for every user which makes the user unique. What is in my mind is to create a key with a combination of userid+GUID and store it in a arraylist and...
  5. manishsawant

    Restrict second user with the same credentials to login

    Hi, I want to restrict the second user with the same loginid trying to login in to the application by displaying a confirm dialog box saying "User with the same login credentials already logged in, would you like to overwrite him." If the user clicks yes then he overwrites the first user and...
  6. manishsawant

    <!DOCTYPE and AJAX controls issue

    Hi Mark, As per your advice i have taken a css based approach. This is what i have in the css <style type="text/css" media="all"> /* The CSS that's required to position the footer */ html { height: 100%; } body { height: 100%; } #nonFooter { position: relative...
  7. manishsawant

    Footer on aspx page

    Hi, If i place a div at the bottom on the page and put footer contents in it still it wont go to the bottom because we are using <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> If i remove doctype then my footer looks...
  8. manishsawant

    Footer on aspx page

    Hi, I want to have a footer at the bottom of a aspx page as how we have on this page (Copyright stuff). The aspx page has a <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> Here is the code in the .aspx page. <%@ Page...
  9. manishsawant

    &lt;!DOCTYPE and AJAX controls issue

    Mark, Thanks for the advice. I will try to implement it in my code. Manish
  10. manishsawant

    &lt;!DOCTYPE and AJAX controls issue

    Hi Mark, Thanks for pointing out things which are incorrect. Can you please advice what shall i use for page layout if not the table and how do i place a footer on the page. It would be a great help for me. Thanks, Manish
  11. manishsawant

    &lt;!DOCTYPE and AJAX controls issue

    Hi, Just a simple test. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <body> <table height="100%" border="1"> <tr> <td valign="bottom"> This is a test page. </td> </tr> </table> </body> </html> If i remove...
  12. manishsawant

    &lt;!DOCTYPE and AJAX controls issue

    Hi, Thanks for the responses. I had a discussion with the page designers and they had to put a footer on every page. We dont want the footer to be in a fixed position but it should always be at the bottom of the page. So they told me that if i have doctype then it wont let them get the height...
  13. manishsawant

    &lt;!DOCTYPE and AJAX controls issue

    Hi, If i remove <!DOCTYPE then some of the AJAX Controls doesnt give expected results. For example the UpdateProgress, even if i have mentioned HorizontalSide="Center" VerticalSide="Middle" in AlwaysVisibleControlExtender the image inside the UpdateProgress show up at the top left corner. Is...
  14. manishsawant

    textbox onchange issue

    Hi, I have a textbox and a combobox. I have written code to select a value from the combobox when the user start typing in the textbox(onChange). var Type = document.getElementById('cmbType'); var TypeText = 'Select Type'; if(Type.options[Type.selectedIndex].text == TypeText) {...
  15. manishsawant

    Forms authentication redirect to login page

    Hi, Thanks for the tip, how can we avoid frames and not refresh the top menus whenever they are clicked. Are you talking about using AJAX to make it look like no postback using seperate panels or is there any other way. Thanks, Manish

Part and Inventory Search

Back
Top