"You will never shut down the real napster" The Italian Job
Arun Jacob My Technical Blog : Code.NET
"You will never shut down the real napster" The Italian Job
Arun Jacob My Technical Blog : Code.NET
True. RIP Great man.:rose:
Arun Jacob My Technical Blog : Code.NET
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
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
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
My 5
Arun Jacob My Technical Blog : Code.NET
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
Thanks. I just noted that. :-D
Arun Jacob My Technical Blog : Code.NET
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
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
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
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
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
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
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
Can you check if this link solves your problem, Avoid Multiple Form Submits[^]
Arun Jacob My Technical Blog : Code.NET
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
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
Not a happy day for Google. Orkut got attacked with Cross Site scripting last saturday.
Arun Jacob My Technical Blog : Code.NET