Search

You searched for the word(s): userid:639822

Matching Posts

  • Re: Session data gets overriden?

    [quote user="sunildesaraju"] Now User A logs in and he can see the data (let us say data of logged in users for a particular site including his name also). After some time B logs in. He can also see the data. Now my question is whether A will see the new data i.e B has logged in or the same old data.? [/quote] Session is user specific. From Session state Recommended usage Use when you are storing short-lived information that is specific to an individual session and security is an issue
    Posted to State Management (Forum) by budugu on 11/26/2009
  • Re: Session Lost

    [quote user="hyousuf"] Whenever I update pages on the website, for a HotFix or any small change, mostly it restarts the web application destroying the current session which logs out all users. Is there a way to prevent that, because previously we had out website in ASP and never had this problem. Im using InProc session mode. [/quote] Changing the following files will cause restart of the application pool, which will result in session loss (InProc Mode) .. web.config or machine.config global
    Posted to State Management (Forum) by budugu on 11/26/2009
  • Re: Web Page Title Symbol

    [quote user="QUL001"] I am referring to the small symbol that appears to the left of the name. The default graphic in Windows Explorer is the "e" symbol. I have an ASP.net website[/quote] You can't put image in the title. But you can put image in addressbar. Check these.. http://forums.asp.net/t/1142211.aspx http://forums.asp.net/t/1165292.aspx
    Posted to Getting Started (Forum) by budugu on 11/26/2009
  • Re: CURRENCY CONVERTER PROBLEM

    You need to call currency conversion web service. Check these.. http://www.codeproject.com/KB/database/SQLCLR.aspx http://www.codeproject.com/KB/cpp/CurrencyConvert.aspx
    Posted to Web Forms (Forum) by budugu on 11/26/2009
  • Re: Send Dropdown selelection on one page to a dropdown on another

    [quote user="Irianna"] url.Append(Feedback_comment_type); [/quote] [quote user="Irianna"] But, its not working.[/quote] Not getting any value? You can read selected value like this. string Feedback_comment_type = DropDownList1 . SelectedValue; If it didn't solve your problem, Post all relavant code.
    Posted to Web Forms (Forum) by budugu on 11/26/2009
  • Re: setting active link bold in html

    How abt this..? <asp:HyperLink ID="HyperLink1" runat="server" CssClass ="testCSS" NavigateUrl ="~/WebForm1.aspx" >HyperLink</asp:HyperLink> <style type="text/css"> .testCSS { font-size:36; font-weight:bold; } </style> or.. <style type="text/css"> a { color: black; text-decoration: none; } a:active { color: Red; font-weight: bold; } a:hover { color: blue; text-decoration: underline; } </style> <asp:HyperLink
    Posted to Client Side Web Development (Forum) by budugu on 11/25/2009
  • Re: Unique users protected hit counter

    [quote user="iluxa.v"]Can i build somthing similar but without cookies - Cookies can be disabled in browser by user?[/quote] Without cookies, It will be a difficult task. Here is an approach.. http://aspnetresources.com/blog/count_your_visitors.aspx Also check this tool.. http://www.codeproject.com/KB/aspnet/Online-Active-Users.aspx
    Posted to State Management (Forum) by budugu on 11/25/2009
  • Re: Compare and Custom validation is not working

    [quote user="cubangt"] cvDaySelection.Type = ValidationDataType.String; cvDaySelection.ValueToCompare = lblpayweek.Text.ToString(); cvDaySelection.Operator = ValidationCompareOperator.NotEqual; cvDaySelection.ControlToCompare = tot.ToString(); [/quote] I think it should be.. cvDaySelection.ValueToCompare = tot.ToString(); cvDaySelection.ControlToCompare = lblpayweek;
    Posted to Web Forms (Forum) by budugu on 11/25/2009
  • Re: why my session variables are lost?

    If it works on one sever, your code should be fine. May be some server settings causing this issue. Check this thread.. http://forums.asp.net/p/1457959/3344056.aspx
    Posted to State Management (Forum) by budugu on 11/25/2009
  • Re: Passgin a paramater trough pages

    You can pass information between pages in various ways, check this.. http://msdn.microsoft.com/en-us/library/6c3yckfw.aspx and to Crystal report.. http://forums.asp.net/p/1492113/3511274.aspx
    Posted to Web Forms (Forum) by budugu on 11/25/2009
Page 1 of 364 (3638 items) 1 2 3 4 5 Next > ... Last »