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
A

Arun Jacob

@Arun Jacob
About
Posts
447
Topics
34
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Best movie depiction of a software developer (or "hacker" as Hollywood calls them)
    A Arun Jacob

    "You will never shut down the real napster" The Italian Job

    Arun Jacob My Technical Blog : Code.NET

    The Lounge c++ architecture question

  • RIP Dennis Ritchie
    A Arun Jacob

    True. RIP Great man.:rose:

    Arun Jacob My Technical Blog : Code.NET

    The Lounge csharp c++ com question

  • Steve Jobs, RIP
    A Arun Jacob

    From, http://www.apple.com/stevejobs/[^] "Apple has lost a visionary and creative genius, and the world has lost an amazing human being. ...... ...... Steve leaves behind a company that only he could have built, and his spirit will forever be the foundation of Apple." Steve Jobs, RIP:rose:

    Arun Jacob My Technical Blog : Code.NET

    The Lounge json

  • No Discussions in Home Page
    A Arun Jacob

    I don't see any discussions in the home page and also Articles Needing Approval Section(as somebody reported). Is this because of http://www.codeproject.com/Messages/4035112/Some-features-temporarily-disabled.aspx[^] ? [UPDATE] Discussions are showing now.

    Arun Jacob My Technical Blog : Code.NET

    Site Bugs / Suggestions csharp com question announcement

  • Social life of Programmers.
    A Arun Jacob

    Recently I have read a book, 'The Monk Who Sold His Ferrari' I would recommend that book for you. :)

    Arun Jacob My Technical Blog : Code.NET

    The Lounge question lounge

  • Social life of Programmers.
    A Arun Jacob

    My 5

    Arun Jacob My Technical Blog : Code.NET

    The Lounge question lounge

  • ASP Logout
    A Arun Jacob

    Oh, I thought it was for ASP.NET. Could you please try the same logic in ASP (remove the expiration)? You'll find some equivalent snippets in ASP.

    Arun Jacob My Technical Blog : Code.NET

    ASP.NET help question

  • ASP Logout
    A Arun Jacob

    I think this is because of the expiry that you have set for the response. Could you please try remove the expiration and only use,

    Response.Cache.SetCacheability(HttpCacheability.NoCache);
    Response.Buffer = True;

    This is not a tested code. If you try this way then it should work. I assume that you have proper session validation logic in your pages.

    Arun Jacob My Technical Blog : Code.NET

    ASP.NET help question

  • Do we need a .Net 4.5 forum?
    A Arun Jacob

    Thanks. I just noted that. :-D

    Arun Jacob My Technical Blog : Code.NET

    The Lounge csharp dotnet question

  • Banner Background Issue
    A Arun Jacob

    What is the background color of the banner? I believe its yellow or some kind of adrotator. But I can see only white background on the right side of the codeproject banner logo. Browser : IE7 Small Note : Why don't we have a direct "Add attachment" option atleast for Site Bugs/ Suggestions HTML Editor? I know there is a link option here but it would be nice if we can upload the screenshot directly.

    Arun Jacob My Technical Blog : Code.NET

    Site Bugs / Suggestions question csharp html com help

  • Disable DropDownList at ClientSide
    A Arun Jacob

    Okay.Then you can debug the method by using,

    debugger;

    debug the code and try to explore ddl object so that you can find the issue.

    Arun Jacob My Technical Blog : Code.NET

    ASP.NET tutorial

  • Disable DropDownList at ClientSide
    A Arun Jacob

    ddl.disabled = true; is correct and it should work. I hope AutoPostBack is false for CheckBox. Alternatively you can try,

    ddl.disabled = "disabled";

    Arun Jacob My Technical Blog : Code.NET

    ASP.NET tutorial

  • Rating - Numbers 4 & 5 Missing
    A Arun Jacob

    Unfortunately I am using IE 7 and I can't see numbers 4 & 5 in "Rate this Message". Please check the first reply from Michael. http://www.codeproject.com/Forums/12076/ASP-NET.aspx?select=3996533&tid=3996411[^]

    Arun Jacob My Technical Blog : Code.NET

    Site Bugs / Suggestions csharp com question

  • Disable DropDownList at ClientSide
    A Arun Jacob

    As Anurag suggested, please check the Id of the dropdown. Moreover, where you are calling this javascript method Disable() from? Just a Note : May be you know this. You can avoid if..else condition by using,

    btn.disabled = chk.checked ;
    txt.disabled = chk.checked ;
    ddl.disabled = chk.checked ;

    Arun Jacob My Technical Blog : Code.NET

    ASP.NET tutorial

  • Problem with GridView Column Count when databinding programmatically?
    A Arun Jacob

    From MSDN, "Automatically generated column fields are not added to the Columns collection." Try getting the count from the datasource object instead of gridview.

    Arun Jacob My Technical Blog : Code.NET

    ASP.NET help csharp database question

  • Voting Distribution Graph - Z-Index Issue on Mouse Over
    A Arun Jacob

    I have found a small layout issue and hope this is not reported. Browse the below URL, Problem about Validation Controls[^] Place the mouse over the Rating Stars in Solution1 and a Voting Contribution Graph will be displayed.But the issue is, the Report icon is also visible on top of the voting contribution graph. You can see the report menu on mouse over it. Browser : IE7

    Arun Jacob My Technical Blog : Code.NET

    Site Bugs / Suggestions help csharp database com data-structures

  • how to Preventing double submit in ASP
    A Arun Jacob

    Can you check if this link solves your problem, Avoid Multiple Form Submits[^]

    Arun Jacob My Technical Blog : Code.NET

    C# help csharp asp-net tutorial

  • Commands in User Control
    A Arun Jacob

    If you use datagrid and you want a command inside the datagrid, then you should define that command in the ObservableCollection item object. eg, If you use ObservableCollection<Customer> as ItemsSource, define the command in Customer class.

    Arun Jacob My Technical Blog : Code.NET

    WPF wpf wcf help tutorial question

  • WPF MVVM Navigation
    A Arun Jacob

    I don't know whether I get your requirement correctly but try this, Create a static instance in the MainWindowViewModel and use MainWindowViewModel.Instance.MethodName() for accessing the method.

    Arun Jacob My Technical Blog : Code.NET

    C# wpf csharp debugging architecture workspace

  • Happy Birthday Google
    A Arun Jacob

    Not a happy day for Google. Orkut got attacked with Cross Site scripting last saturday.

    Arun Jacob My Technical Blog : Code.NET

    The Lounge
  • Login

  • Don't have an account? Register

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