Click here to Skip to main content
Page 1 of 4
Page Size: 10 · 25 · 50


Author filtered by: Mohammed Hameed [x]
Question 13 May 2013   license: CPOL
Ideally, how many lines of code (max) should be written in a Linq/Lambda expression?Thanks!
My vote of 5 by Mohammed Hameed
Forum Message 13 May 2013  
Perfect.
Re: Review: CLR via C# Book by Mohammed Hameed
Forum Message 13 May 2013  
I have posted this as a Suggestion and its related to C#. Whats wrong in that, please explain? I'm getting downvotes because of your comment. Atleast tell me how can I delete this comment.
Client SIde & Server Side by Mohammed Hameed
Answer 13 May 2013   license: CPOL
Client side is a code which get executed at browser (client) in web applications, like javascript.Server side is a code which get executed at web server (IIS) in web applications, like Aspx (ASP.Net).Let me know for further explanation.
A Basic Question.... by Mohammed Hameed
Answer 13 May 2013   license: CPOL
Definition as per http://www.json.org/[^] : JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate. It is based on a subset of the JavaScript Programming Language, Standard ECMA-262 3rd...
Question 13 May 2013   license: CPOL
Please explain about this features how supportive they are in WPF.Hope my question is understable. If any queries please let me know.
Question 13 May 2013   license: CPOL
Please clarify whether the Canvas control can hold a Xaml page content (can we load Xaml into Canvas dynamically by reading the Xaml page?) Thanks.
Out of memory exception by Mohammed Hameed
Answer 13 May 2013   license: CPOL
My solution = Solution 1 + 'I will first loop through folder only to get all jpgs, store in a collection like List. Then in second task, out of this loop, will query the DB once only to verify the images which are already existing (this is achieved by passing the list of string to the query) and...
Answer 13 May 2013   license: CPOL
I think it is better to use XmlReader for reading xml files.Refer this link: http://stackoverflow.com/questions/5827668/how-to-read-xml-file-using-xml-reader[^]
How to make this work? by Mohammed Hameed
Answer 12 May 2013   license: CPOL
I think you have to use exec(here your query) command for this to get executed.Hope this helps...
Answer 12 May 2013   license: CPOL
You have to convert the string into char array and then do foreach loop.Example:if (TextBox1.Text != string.Empty) { string str = TextBox1.Text; char[] array = str.ToCharArray(); TextBox1.Text = ""; ...
C#
Review: CLR via C# Book by Mohammed Hameed
Forum Message 12 May 2013  
I would suggest reading an excellent book called CLR Via C# by Jeffrey Ritcher. You'll get good understanding about C# features, its compiler, some IL code examples, CLR (JIT) mechanisms
Books on Design & Architecture by Mohammed Hameed
Forum Message 12 May 2013  
Can somebody list down some best books on Design & Architecture. Also, which one to refer for Design Patterns: GoF or Martin Fowler's PEA and why? Be a good professional who sh
Answer 12 May 2013   license: CPOL
There are lot of great articles provided on WPF.I'm listing some of them below. Go through them you get good understanding about WPF.Do let me know if you have queries.WPF Tutorial : Beginning[^]A Guided Tour of WPF – Part 1 (XAML)[^]
WPF
Answer 12 May 2013   license: CPOL
For me its adding 5 controls.Check the slightly modified code below(Instead of Name I have put ID):protected void Button1_Click(object sender, EventArgs e) { int j = 5; for (int i = 1; i
C#
disable postback on ImageButton by Mohammed Hameed
Answer 12 May 2013   license: CPOL
You cannot disable postback of a given Button control because it is a default tendancy of buttons.Inspite of that I would suggest you use some client side control rather than server side.
Forum Message 12 May 2013  
How to reopen the article? Be a good professional who shares programming secrets with others.
Forum Message 12 May 2013  
Thanks Pete! Be a good professional who shares programming secrets with others.
Answer 12 May 2013   license: CPOL
In the master page put your scripts at the bottom, just before the end of the body tag and it should work. At the end of the day, your master and client pages combine to render one single HTML page.Scripts at the bottom will fire when the page is loaded.
Forum Message 12 May 2013  
Hi, Recently I have posed an article but its status is showing as closed. Feedback I received is quality is poor. Can admins please send me the detailed feedback so that I can keep in
Answer 12 May 2013   license: CPOL
Along with the timer you have to use UpdatePanel as well.Check the link: http://msdn.microsoft.com/en-us/library/cc295400.aspx[^]
Answer 12 May 2013   license: CPOL
I think code should be like below, try it:$('#CsTotalDebit label').text(m);
Answer 12 May 2013   license: CPOL
Create a new project in Console application. Write some code, then compile it. Run and verify whether working fine. Now check the project's bin folder -> an .exe file automatically get created there.Hope this helps you.If any queries plz let me know.
Password in sql server by Mohammed Hameed
Answer 12 May 2013   license: CPOL
You have to encrypt the passwords while storing through your applicable to DB. And decrypt the password while you retrieve the password from DB to application.You can use any well known encryption algo for encoding.Check this link: Password Encryption using MD5 Hash Algorithm in C#[^]
asp .net javascript function by Mohammed Hameed
Answer 12 May 2013   license: CPOL
Use Page.RegisterClientScriptBlock("key", "script");to register javascript code in ur codebehind file.

Page 1 of 4
1 2 3 4


Advertise | Privacy | Mobile
Web02 | 2.6.130513.1 | Last Updated 14 May 2013
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid