9,869,883 members (28,037 online)
Visit CodeProject.TV
Discuss CodeProject.TV
Sign in
Email
Password
Forgot your password?
Sign in using
home
articles
Chapters and Sections
>
Search
Latest Articles
Latest Tips/Tricks
Top Articles
Beginner Articles
Technical Blogs
Posting/Update Guidelines
Article Help Forum
Article Competition
Submit an article or tip
Post your Blog
quick answers
Ask a Question
View Unanswered Questions
View All Questions...
C# questions
ASP.NET questions
VB.NET questions
C#4.0 questions
C++ questions
discussions
All Message Boards...
Application Lifecycle
>
Running a Business
Sales / Marketing
Collaboration / Beta Testing
Work & Training Issues
Design and Architecture
ASP.NET
JavaScript
C / C++ / MFC
>
ATL / WTL / STL
Managed C++/CLI
Adobe Technologies
C#
Free Tools
Objective-C
Ruby On Rails
Database
Hardware & Devices
>
System Admin
Hosting and Servers
Java
.NET Framework
Mobile
VS 11 & .NET 4.5
Sharepoint
Silverlight / WPF
Visual Basic
Web Development
Site Bugs / Suggestions
features
Component & Service Catalog
Competitions
News
The Insider Newsletter
Newsletter archive
Surveys
Product Showcase
Research Library
CodeProject Stuff
community
The Insider News
The Lounge
The Weird & The Wonderful
The Soapbox
Press Releases
Who's Who
Most Valuable Professionals
Company Listings
Non-English Language
>
General Indian Topics
General Chinese Topics
help
What is 'CodeProject'?
General FAQ
Ask a Question
Bugs and Suggestions
Article Help Forum
Site Map
Advertise with us
Employment Opportunities
About Us
The default search term operator is
AND
.
You can use brackets,
AND
,
OR
, and
NOT
to improve your search. For example:
C# AND NOT(VB or SQL)
A query of a single
*
will return everything, filtered by any filters.
Filter examples:
Search by Author
author:"author name"
Filter by tag
tag:C#
or
tag:(C++ or Java)
Wildcard search
use "?" or "*" eg.
gr?d
or
gr*
2,598 Results
Search
Everything
Articles
Technical Blogs
Tips & Tricks
Questions
Answers
Forum Messages
News Items
Catalog Items
Videos
Training Courses
Just My Stuff
My Bookmarks
Sort by
Relevance
Rating Asc
Rating Desc
Title Asc
Title Desc
Author Asc
Author Desc
Date Created Asc
Date Created Desc
Date Modified Asc
Date Modified Desc
Price Asc
Price Desc
Duration Asc
Duration Desc
Match
All Fields
Title
Description
Author(s)
Tags
Any Date
Last 12 hours
Last 24 hours
Last week
Last 2 weeks
Last month
Last 3 months
Last 6 months
Last year
January
February
March
April
May
June
July
August
September
October
November
December
Rating Range
All - Including Unrated
1.0 - 5.0
2.0 - 5.0
3.0 - 5.0
4.0 - 5.0
4.5 - 5.0
4.8 - 5.0
5.0
Advanced Filters:
Article Topics
All Topics
Desktop Development
Web Development
Mobile Development
Cloud Computing
Enterprise Systems
Database
Multimedia
Languages
Platforms, Frameworks & Libraries
General Programming
Graphics / Design
Development Lifecycle
General Reading
Third Party Products
Mentor Resources
Article License
All Licenses
CPOL
CDDL
Ms-PL
MPL
CPL
Eclipse
MIT
BSD
Apache
CC (ASA 2.5)
Zlib
Public Domain
CC (Attr 3U)
CC (ASA 3U)
LGPL3
GPL3
Forums
All Forums
Feature Forums
General Programming
Web Development
Product Lifecycle
Database & SysAdmin
General Discussions
Non-English Language
Catalog Category
All Categories
Books & Training
Charting & Graphing
Components, Controls, Libraries
Data Manipulation & Mining
Database Tools
Debugging
Documentation & Help
Financial, Math & Scientific
Frameworks & APIs
General Development Tools
GIS & Maps
Graphics & 3D Modeling
Hardware and Robotics
Hosting
IDEs
Imaging
Mobility
Multimedia
Networking
Performance and Profiling
Programming Languages
Project Life-cycle Management (ALM)
Reporting
Search
Security
Setup & Deploy
System Adminstration
Utilities
Virtualization
Web Design/Development
Catalog License
All Licenses
Commercial
Fully Function Evaluation version
Limited Functionality Trial
Limited Time Trial
Shareware
Free For Personal Use
Freeware
Page 1 of 52
Page Size:
10
·
25
·
50
Author filtered by: Prasad_Kulkarni
[x]
Client SIde & Server Side
by
Prasad_Kulkarni
Answer
13 May 2013
license:
CPOL
Client side refers to the browser which is viewing the web page delivered by the server. This is HTML and Javascript, maybe Shockwave flash, maybe Silverlight.Server side refers to the application on the web server which delivers the web page content.In brief:Server side: Create and...
General Programming
»
Uncategorised Quick Answers
»
General
ASP.NET
remove "ReturnUrl" in FormsAuthentication feature
by
Prasad_Kulkarni
Answer
13 May 2013
license:
CPOL
Check similar QA:here[^] and here[^]Also try here[^]
General Programming
»
Uncategorised Quick Answers
»
General
ASP.Net-4.0
java script in asp.net
by
Prasad_Kulkarni
Answer
12 May 2013
license:
CPOL
Something like this:protected void Page_Load(object sender, EventArgs e) { System.Web.UI.ScriptManager.RegisterClientScriptBlock(Page, typeof (Page), "script", "go()", true);}For more detailed description look here[^]
General Programming
»
Uncategorised Quick Answers
»
General
ASP.NET
Yes the main developement
by
Prasad_Kulkarni
Forum Message
12 May 2013
That's where the actual logic get built. That's where the methods and everything you have learned get applied. (Commenting code, naming conventions etc.) That's the part from where KT is needed; and
General Discussions
»
Survey "What Is Your Favourite Phase Of Software Development?" (13 May 2013)
how to send mail in future date using asp.net c#?
by
Prasad_Kulkarni
Answer
28 Apr 2013
license:
CPOL
Refer: Similar answer[^]
General Programming
»
Uncategorised Quick Answers
»
General
ASP.NET
Bind Gridview using JQery in ASP.Net
by
Prasad_Kulkarni
Answer
28 Apr 2013
license:
CPOL
Example 1[^]Example 2[^]..and 299,000 examples here[^]
General Programming
»
Uncategorised Quick Answers
»
General
ASP.NET
jQuery
How to join two data base
by
Prasad_Kulkarni
Answer
17 Apr 2013
license:
CPOL
Try this:SELECT a.userID, b.usersFirstName, b.usersLastName FROM databaseA.dbo.TableA a JOIN database B.dbo.TableB b ON a.userID=b.userIDFound it here[^]
General Programming
»
Uncategorised Quick Answers
»
General
SQL
how to make text box use only numbers?
by
Prasad_Kulkarni
Answer
17 Apr 2013
license:
CPOL
Try this:void NumberValidation(object sender, KeyPressEventArgs e) { if ((e.KeyChar >= 48 && e.KeyChar
General Programming
»
Uncategorised Quick Answers
»
General
C#
How to Fire Event of ComboBoxColumn in DataGridView
by
Prasad_Kulkarni
Answer
15 Apr 2013
license:
CPOL
Refer similar discussionhttp://social.msdn.microsoft.com/Forums/en-US/winforms/thread/873e86e4-e5c9-4abb-9549-4f0ed27fbef8[^]http://social.msdn.microsoft.com/Forums/en-US/winforms/thread/4706be23-03ac-4b40-8a58-91191a204361[^]
General Programming
»
Uncategorised Quick Answers
»
General
C#
ASP.NET
Freeze Repeater Header / Footer Rows
by
Prasad_Kulkarni
Answer
14 Apr 2013
license:
CPOL
Check out couple of similar discussionsDiscussion 1[^]Discussion 2[^]
General Programming
»
Uncategorised Quick Answers
»
General
C#3.0
C#
Megento dot net books
by
Prasad_Kulkarni
Answer
14 Apr 2013
license:
CPOL
Tried here[^]?Lot of links are there for you.
General Programming
»
Uncategorised Quick Answers
»
General
ASP.NET
GridView In asp.net
by
Prasad_Kulkarni
Answer
9 Apr 2013
license:
CPOL
Refer:GridView Custom Paging with PageSize Change Dropdown[^]GridView Custom Paging[^]
General Programming
»
Uncategorised Quick Answers
»
General
ASP.NET
How To get the records between two times
by
Prasad_Kulkarni
Answer
8 Apr 2013
license:
CPOL
Try this:SELECT * FROM tblEmployeeTimeCards WHERE CONVERT(DATETIME, dtcreated) >= fromdate AND CONVERT(DATETIME, dtcreated)
General Programming
»
Uncategorised Quick Answers
»
General
SQL
Server
How to retrieve only numbers(decimal or non decimal) from a alpha numericstring
by
Prasad_Kulkarni
Answer
1 Apr 2013
license:
CPOL
Have a look on following thread:Only Numeric In String[^]
General Programming
»
Uncategorised Quick Answers
»
General
VBScript
need to know about how to work with Template field of gridviw...
by
Prasad_Kulkarni
Answer
1 Apr 2013
license:
CPOL
Have a look on following thread:http://msdn.microsoft.com/en-us/library/bb288032.aspx[^]..and a similar discussion[^]
General Programming
»
Uncategorised Quick Answers
»
General
ASP.NET
Send Email through Asp.Net using Gmail Smtp Server
by
Prasad_Kulkarni
Answer
1 Apr 2013
license:
CPOL
Have look on following thread:Enabling SSL[^]From similar discussion[^]
General Programming
»
Uncategorised Quick Answers
»
General
C#
ASP.NET
Facebook Integration in web site
by
Prasad_Kulkarni
Answer
1 Apr 2013
license:
CPOL
Here you go[^], check out lots of results.
General Programming
»
Uncategorised Quick Answers
»
General
VB
ASP.NET
with
Find the difference in two List
by
Prasad_Kulkarni
Answer
26 Mar 2013
license:
CPOL
Have a look on similar discussion here[^]
General Programming
»
Uncategorised Quick Answers
»
General
C#
Clear all textbox in C#
by
Prasad_Kulkarni
Answer
26 Mar 2013
license:
CPOL
Try this:public static void EmptyTextBoxes(Control parent) { foreach (Control c in parent.Controls) { if (c.GetType() == typeof(TextBox)) { ((TextBox)(c)).Text = string.Empty; } }Found it here[^]
General Programming
»
Uncategorised Quick Answers
»
General
C#
How to archive data from my production database
by
Prasad_Kulkarni
Answer
25 Mar 2013
license:
CPOL
Refer: How to archive data from my production database?[^]
General Programming
»
Uncategorised Quick Answers
»
General
SQL-Server
32 bit aplication in 64 bit application?
by
Prasad_Kulkarni
Answer
25 Mar 2013
license:
CPOL
Refer following thread:How to run a Visual Studio application as 32-bit on a 64-bit machine[^]
General Programming
»
Uncategorised Quick Answers
»
General
C#1.0
C#2.0
C#3.0
C++
C#
ASP.NET
C#
C#4.0
How can i search an item from sql server database starting with a particular alphabet that i have written in textbox
by
Prasad_Kulkarni
Answer
25 Mar 2013
license:
CPOL
Use Like[^] operator...and you can code here[^]
General Programming
»
Uncategorised Quick Answers
»
General
C#
How can i pass the ID?
by
Prasad_Kulkarni
Answer
25 Mar 2013
license:
CPOL
Try this:To pass value in query string:Response.Redirect("Item.aspx?Id=1");To get value from query string:For string:String Id = Request.QueryString["Id"].ToString();For int:int id= Convert.ToInt32(Request.QueryString["Id"]);Also, have a look on following thread:Passing variables...
General Programming
»
Uncategorised Quick Answers
»
General
C#
I'm new to Collections
by
Prasad_Kulkarni
Answer
25 Mar 2013
license:
CPOL
Yes google[^] WILL for sure!
General Programming
»
Uncategorised Quick Answers
»
General
C#
How to call ssrs report into asp.net using C#.net
by
Prasad_Kulkarni
Answer
19 Mar 2013
license:
CPOL
Firstly you need to do a simple search on google[^] before posting question here.You can also try MSDN, to get detailed description with some code snippetsReporting Services Reports (SSRS)[^]Not far, you can even get lot more articles and QA on SSRS in CodeProject[^] itself.
General Programming
»
Uncategorised Quick Answers
»
General
C#3.0
ASP.NET
C#
C#4.0
SSRS
how to pass values from frontend to backend
by
Prasad_Kulkarni
Answer
19 Mar 2013
license:
CPOL
Refer:How to write Stored procedure to Your Data Insert Application[^] Using insert stored procedure with c#[^]
General Programming
»
Uncategorised Quick Answers
»
General
C#
ASP.NET
SQL
how to pass values from frontend to backend
by
Prasad_Kulkarni
Answer
19 Mar 2013
license:
CPOL
Read about ADO.NET here and it will help you. Look at these:MSDN: ADO.NET[^]MSDN: Accessing Data with ADO.NET[^]The C# Station ADO.NET Tutorial[^]Using ADO.NET for beginners[^]You just need 9 steps to follow to store your text box value to SQL, Check here:How to insert Data in SQL...
General Programming
»
Uncategorised Quick Answers
»
General
C#
ASP.NET
SQL
Detecting Empty cell in Excel Range
by
Prasad_Kulkarni
Answer
14 Mar 2013
license:
CPOL
Have a look on similar discussion:How to check if an Excel Range is empty in C#[^]Check if a cell is blank in excel[^]
General Programming
»
Uncategorised Quick Answers
»
General
C#
taking user information in different pages
by
Prasad_Kulkarni
Answer
14 Mar 2013
license:
CPOL
Refer following thread:Transferring Data Between ASP.NET Web Pages[^]Also have a look on different state management techniques: How to pass data from one form to another in C#?[^]
General Programming
»
Uncategorised Quick Answers
»
General
C#
ASP.NET
Displaying Urdu/Arabic Text in Desktop app
by
Prasad_Kulkarni
Answer
14 Mar 2013
license:
CPOL
Please check this article:Multilingual Support in C#[^]
General Programming
»
Uncategorised Quick Answers
»
General
C#
C#4.0
WinForm
C# Windows Application -- Automatic Email with an Attachment
by
Prasad_Kulkarni
Answer
14 Mar 2013
license:
CPOL
You need Windows Service[^] for this.Sample: Simple Windows Service which sends auto Email alerts[^]Details about Windows Service: MSDN: Introduction to Windows Service Applications[^]Sending Automated Emails asynchronously using a C# Windows Service in conjunction with Database Email...
General Programming
»
Uncategorised Quick Answers
»
General
C#
SQL-Server
SQL2008
How to get Date from dateTime
by
Prasad_Kulkarni
Answer
14 Mar 2013
license:
CPOL
Update your query and add this line to your date column:SELECT CONVERT(nvarchar, GETDATE(), 101)[Updated]Use EntityFunctions.TruncateTime Method [^]Also check this similar discussion: Select date from datetime[^]
General Programming
»
Uncategorised Quick Answers
»
General
ASP.NET
problem with send email
by
Prasad_Kulkarni
Answer
13 Mar 2013
license:
CPOL
Check out similar discussion on CP:The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.5.1 Authentication Required.[^]
General Programming
»
Uncategorised Quick Answers
»
General
ASP.NET
req for sending mail code in asp.net
by
Prasad_Kulkarni
Answer
13 Mar 2013
license:
CPOL
Try this;private void MailSend() { try { MailMessage mail = new MailMessage(); SmtpClient SmtpServer = new SmtpClient("smtp.gmail.com"); SmtpServer.Host = "smtp.gmail.com"; mail.From =...
General Programming
»
Uncategorised Quick Answers
»
General
ASP.NET
views concept in sqlserver
by
Prasad_Kulkarni
Answer
13 Mar 2013
license:
CPOL
Yes, google[^]!
General Programming
»
Uncategorised Quick Answers
»
General
SQL-Server
need a simply tutorial
by
Prasad_Kulkarni
Answer
13 Mar 2013
license:
CPOL
Refer:Connect To POP3 Server[^]Connecting to a POP3 server using C#[^]Retrieve Mail From a POP3 Server Using C#[^]..and more you can get here[^]
General Programming
»
Uncategorised Quick Answers
»
General
C#
grid view image not convert in to pdf
by
Prasad_Kulkarni
Answer
13 Mar 2013
license:
CPOL
Refer:Exporting gridview to pdf with images[^]
General Programming
»
Uncategorised Quick Answers
»
General
C#
MVC Learning-New to MVC, prerequisites to learn
by
Prasad_Kulkarni
Answer
13 Mar 2013
license:
CPOL
Knowing HTML, JavaScript, CSS and obviously C# or VB is all you need to be a good MVC developer. You shouldn't be doing any web development if you don't know the client part (ie, HTML, CSS, JS; etc). It's true that there are several guys out there that only user asp.net web server controls,...
General Programming
»
Uncategorised Quick Answers
»
General
ASP.NET
MVC
Learning complete .Net
by
Prasad_Kulkarni
Answer
12 Mar 2013
license:
CPOL
The very first thing I would like to mention here is that, each programming language has its relative strengths and you have to understand the features unique to each language.Learning programming languages(generally) is based on two crucial factors --Amount of cool stuff you can do with...
General Programming
»
Uncategorised Quick Answers
»
General
C#
ASP.NET
.NET
VB
VB.NET
Tool for multiple file upload with drag and drop
by
Prasad_Kulkarni
Answer
12 Mar 2013
license:
CPOL
Refer:ASP Uploader[^]..and many more here[^]
General Programming
»
Uncategorised Quick Answers
»
General
ASP.NET
how to generate report in php
by
Prasad_Kulkarni
Answer
12 Mar 2013
license:
CPOL
Look here[^]
General Programming
»
Uncategorised Quick Answers
»
General
PHP
How to create local server files search engines
by
Prasad_Kulkarni
Answer
12 Mar 2013
license:
CPOL
Tried google[^]??You'll get around 9,170,000 results.Here is one from CP:Static-Site Search Engine with ASP.NET/C#[^]
General Programming
»
Uncategorised Quick Answers
»
General
C#
AutoComplete Textbox in C# windows Application
by
Prasad_Kulkarni
Answer
12 Mar 2013
license:
CPOL
Refer: AutoComplete TextBox[^]AutoComplete Text Box in wndows form[^]
General Programming
»
Uncategorised Quick Answers
»
General
C#
code for validating email in c#.net
by
Prasad_Kulkarni
Answer
11 Mar 2013
license:
CPOL
You can have a look on MailAddress Class[^]public bool IsValid(string emailaddress){ try { MailAddress m = new MailAddress(emailaddress); return true; } catch (FormatException) { return false; }}This is something where you don't...
General Programming
»
Uncategorised Quick Answers
»
General
C#
C#4.0
String was not recognized as a valid DateTime.
by
Prasad_Kulkarni
Answer
11 Mar 2013
license:
CPOL
Try this:SqlParameter WarrantyTillparam = new SqlParameter("@WarantyTill", SqlDbType.Date);DateTime yourDateTime = DateTime.ParseExact(txtwarrantytill.Text, "yyyyMMdd", CultureInfo.InvariantCulture);WarrantyTillparam.Value = yourDateTime;//WarrantyTillparam.Value = txtwarrantytill.Text; ...
General Programming
»
Uncategorised Quick Answers
»
General
C#
ASP.NET
how to find the difference between two given dates
by
Prasad_Kulkarni
Answer
11 Mar 2013
license:
CPOL
Try this:#include #include "boost/date_time/gregorian/gregorian.hpp"namespace bdt = boost::gregorian;int main(void){ bdt::date today(bdt::date(2010, bdt::Jun, 13)); bdt::date electionDay(bdt::date(2010, bdt::Nov, 2)); bdt::date_period range(today,...
General Programming
»
Uncategorised Quick Answers
»
General
C++
VC++
Paging using repeater
by
Prasad_Kulkarni
Answer
11 Mar 2013
license:
CPOL
Have a look on this CP article, you will surely get some help out:Repeater with Paging and Sorting Features[^]Here's one which is quite similar to your requirement:Custom Paging with the ASP.NET Repeater Control[^]
General Programming
»
Uncategorised Quick Answers
»
General
ASP.NET
calculate current age from date of birth
by
Prasad_Kulkarni
Answer
11 Mar 2013
license:
CPOL
Try this:Dim strDOB As StringstrDOB = txtDateOfBirth.TextDim intAge As IntegerintAge = Math.Floor(DateDiff(DateInterval.Month, DateValue(strDOB), Now()) / 12)lblAge.Text = intAge
General Programming
»
Uncategorised Quick Answers
»
General
VB
VB.NET
Fixed header in grid view
by
Prasad_Kulkarni
Answer
6 Mar 2013
license:
CPOL
Please refer:My answer for similar question: How to make static header in gridview?[^]Some good links on CP:Gridview with Fixed Header[^]Gridview Fixed Headers[^]Grid View with Fixed Header[^]Similar discussion:Fixed GridView Header[^]CP Search:Grid with fix Header[^]
General Programming
»
Uncategorised Quick Answers
»
General
C#
Gridview
ASP.Net-4.0
crystal reports in visual studio 2010
by
Prasad_Kulkarni
Answer
6 Mar 2013
license:
CPOL
Refer: How to Create Dynamic Crystalreport with Parameter Passing in C# Windows Application[^]Crystal-Report-in-windows-application[^]..and huge result list here[^]
General Programming
»
Uncategorised Quick Answers
»
General
CrystalReports
Page 1 of 52
1
2
3
4
5
6
7
8
9
10
First
·
Prev
·
Next
·
Last
Advertise
|
Privacy
|
Mobile
Web01 | 2.6.130513.1 | Last Updated 15 May 2013
Copyright ©
CodeProject
, 1999-2013
All Rights Reserved.
Terms of Use
Layout:
fixed
|
fluid