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


Author filtered by: Md Nazmoon Noor [x]
ASP.NET and Caching Dexterity by Md Nazmoon Noor
Technical Blog 21 Jan 2013   license: CPOL
When it comes to build a high-performance and scalable ASP.Net Web applications Caching is inevitable. It has the ability to store objects whether its data object or pages or controls or even parts of a page. The plan is to keep them in memory while initially requested.
Technical Blog 21 Jan 2013   license: CPOL
How to access a UserControl from another page.
Extension Methods in C# by Md Nazmoon Noor
Technical Blog 18 Jan 2013   license: CPOL
Extension methods in C#.
Technical Blog 18 Jan 2013   license: CPOL
Serializing to JSON in jQuery.
Technical Blog 18 Jan 2013   license: CPOL
Debugging is cool. I mean what would have been happened to developers if they couldn’t debug their code!! Speaking of myself at some point I probably would’ve got pissed off and started to seek some other job. One reason I never was comfortable with database programming was unable to debug the code.
QA
Re: Extension Methods by Ronee Noor
Forum Message 12 Apr 2011  
Though compiler will let you write IsNullOrEmpty() method for string type class but there will be no point writing this cause string already has a method with same name. Thanks.
Extension Methods in C# by Md Nazmoon Noor
Tip/Trick 4 Apr 2011   license: CPOL
Answer 2 Mar 2011   license: CPOL
This is mostly would depend on how you design your database. And in session you should store what language user has preferred. And populate data from the db and then show the contents.couple of tips regarding the design.- Create a "Language" table. Fields could be (ID, Name,...
Answer 2 Mar 2011   license: CPOL
If you use "smtp.yahoo.com" service you'll have to assign the Port No, your yahoo address and the password on you SmtpClient object.Or you also can send mail through your gmail account.Sending E-mail using ASP.net through Gmail account (Gmail SMTP Server account)[^]
Answer 2 Mar 2011   license: CPOL
foreach (Control c in panel1.Controls) { if (c is TextBox) { TextBox txt = (TextBox)c; string str = txt.Text; } }Or if you know the IDs of your textboxes.TextBox txt = (TextBox)panel1.FindControl("txt");Use txt.Text.
Answer 2 Mar 2011   license: CPOL
Suppose you have 3 columns in a gridview. "ID", "Name", "Age"Index value of these columns would be 0, 1, 2so if you wanna remove the column "Name", you'd use.GridView1.Columns.RemoveAt(1);After you do that The Grid will re-arrange its columns. It will have 2 columns then. "ID",...
Free mail client by Member 3431699
Forum Message 25 Aug 2008  
Can anyone please suggest a few free mail clients library supporting SMTP & POP. written for C# ASP.Net projects?

Page 1 of 1


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