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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: manishsawant
  • Order by date
  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
  16. manishsawant

    Forms authentication redirect to login page

    Hi, I am developing a web site using ASP.net 2.0 and authentication is Forms. As per the client requirements we have used frameset as they wanted the top part which contain the menus not to refresh. So when ever there is a session timeout the user is redirected to the login page, but the login...
  17. manishsawant

    Date calcution

    Hi Alex, Everything works now. Thank you very much. Manish
  18. manishsawant

    Date calcution

    Hi Alex, Quarter date works perfect. Thanks a lot for the solution. Manish
  19. manishsawant

    Date calcution

    Hi, The code for Week to day that you gave me returns me with 17th which is the next Monday :). The Quarter start date will be the 1st of that quarter. Thanks, Manish
  20. manishsawant

    Date calcution

    Hi, I tried this for Week to Day. CultureInfo info = Thread.CurrentThread.CurrentCulture; string name = CultureInfo.CurrentUICulture.Name; DayOfWeek firstday = info.DateTimeFormat.FirstDayOfWeek; DayOfWeek today = info.Calendar.GetDayOfWeek(DateTime.Now)...

Part and Inventory Search

Back
Top