9,869,444 members (31,104 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*
1,399 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 28
Page Size:
10
·
25
·
50
Author filtered by: _Amy
[x]
Datagridview not display
by
_Amy
Answer
13 May 2013
license:
CPOL
Refer the links below:Displaying Empty GridView[^]Show Header when GridView is Empty[^]--Amit
General Programming
»
Uncategorised Quick Answers
»
General
ASP.NET
How to rotate button in vb.net
by
_Amy
Answer
13 May 2013
license:
CPOL
Here is an answer of similar qestion:How do I rotate a label in C#?[^]--Amit
General Programming
»
Uncategorised Quick Answers
»
General
VB
VB.NET
WinForm
How to make this work?
by
_Amy
Answer
13 May 2013
license:
CPOL
Try this:ALTER PROCEDURE sp_ArchiveTable1( @StartDate datetime, @EndDate datetime, @DateColumn VARCHAR(100), @TableName VARCHAR(100), @NewTableName VARCHAR(100))ASBEGIN DECLARE @NextIDs TABLE(UniqueID int primary key) DECLARE @statement nchar(1000) = N'SELECT * INTO...
General Programming
»
Uncategorised Quick Answers
»
General
SQL-Server
Multi selection required.
by
_Amy
Forum Message
12 May 2013
I wish I could have selected more than one. :rolleyes: :rolleyes: I wish, I could have written for my mind:Mind.AsEnumerable().Where(m => m["EmptyCorner"] ==
General Discussions
»
Survey "What Is Your Favourite Phase Of Software Development?" (13 May 2013)
C Sharp Textchanged event problem
by
_Amy
Answer
12 May 2013
license:
CPOL
Use OnSelectedIndexChanged event of DropDownList. Try this:protected void ddlWarrenty_SelectedIndexChanged(object sender, EventArgs e){ if(ddlWarrenty.SelectedItem.Text.Trim() == "1 Year") { DateTime dtday = Convert.ToDateTime(dptPurchaseDate.Text.Trim()); ...
General Programming
»
Uncategorised Quick Answers
»
General
ASP.NET
C#
C#4.0
How to change IP Address in URL to Name
by
_Amy
Answer
9 May 2013
license:
CPOL
Check the similar solution here[^].--Amit
General Programming
»
Uncategorised Quick Answers
»
General
Win2003
ASP.NET
IIS
Windows
unable to connect to memebrship database
by
_Amy
Answer
9 May 2013
license:
CPOL
Update your DataSource in connection string. Go to web.config --> Find your connection string --> Update data source from .\SQLEXPRESS to YourMachineName\SQLEXPRESS.Try this:connectionString="data source=YourMachineName\SQLEXPRESS; Integrated Security=SSPI; Initial Catalog=aspnetdb;"...
General Programming
»
Uncategorised Quick Answers
»
General
C#
ASP.NET
Want to make ASP.Net web application secure by using https
by
_Amy
Answer
8 May 2013
license:
CPOL
You need to setup SSL in IIS.Refer the links below:How to Set Up SSL on IIS 7[^]How to implement SSL in IIS[^]How To Set Up an HTTPS Service in IIS[^]Tip/Trick: Enabling SSL on IIS 7.0 Using Self-Signed Certificates[^]--Amit
General Programming
»
Uncategorised Quick Answers
»
General
ASP.Net-4.0
problem in asp.net calender
by
_Amy
Answer
8 May 2013
license:
CPOL
Be little smart and check, The article source code is in a Web Application[^] and the thing which you are creating is Website[^].Check : MSDN : Web Application Projects versus Web Site Projects in Visual Studio[^].I would suggest you, "Not to copy". Just try to understand that how it...
General Programming
»
Uncategorised Quick Answers
»
General
ASP.NET
How to convert nvarchar into numeric data type?
by
_Amy
Answer
8 May 2013
license:
CPOL
Try this:CONVERT(NUMERIC(18, 2), YourData)OrCASTE(YourData as NUMERIC(18, 2))I would suggest you to read Data Type Conversion (Database Engine)[^] and CAST and CONVERT (Transact-SQL)[^] functions.Hope it helps!--Amit
General Programming
»
Uncategorised Quick Answers
»
General
SQL-Server
Testing if present before insert or delete
by
_Amy
Answer
8 May 2013
license:
CPOL
You should use EXISTS (Transact-SQL)[^] statement in the procedure. Try this:SQL:CREATE PROCEDURE spSubNewsletter @Email VARCHAR(50)ASBEGIN IF NOT EXISTS(SELECT * FROM sdfClient WHERE EmailID=@Email) BEGIN INSERT INTO sdfClient(EmailID) VALUES (@Email) ...
General Programming
»
Uncategorised Quick Answers
»
General
SQL-Server
VB
VB.NET
Error : External Table is not in Expected Format
by
_Amy
Answer
8 May 2013
license:
CPOL
This error occurs when you are trying to use an Excel 2007 file with a connection string that uses: Microsoft.Jet.OLEDB.4.0 and Extended Properties=Excel 8.0.Follow the steps below:Steps:1) Click on File Menu. 2) Click on Save As. 3) Show a Box. 4) Change File Name & Save As Type to...
General Programming
»
Uncategorised Quick Answers
»
General
C#
Implement Custom Pagination in GridView with ASP.NET 4.0
by
_Amy
Answer
8 May 2013
license:
CPOL
Refer the links below:Custom Paging in ASP.Net GridView using SQL Server Stored Procedure[^]GridView DropDownList Pager[^]GridView Custom Paging[^]You can also check : Efficiently Paging Through Large Amounts of Data[^]Hope it helps!--Amit
General Programming
»
Uncategorised Quick Answers
»
General
C#
ASP.NET
SQL-Server
SQL2008
slider search filter in asp.net using c#.
by
_Amy
Answer
8 May 2013
license:
CPOL
Only one thing I can do for you is:Let me google that for you[^]--Amit
General Programming
»
Uncategorised Quick Answers
»
General
C#
ASP.NET
Disable radtooltipmanager showevent ONCLICK for particular control
by
_Amy
Answer
8 May 2013
license:
CPOL
Refer the link below to find the answer of similar question:Telerik Forum : how to disable radtooltip?[^]And also check : Tooltip doesn't show if control is disable[^].Hope it helps!--Amit
General Programming
»
Uncategorised Quick Answers
»
General
ASP.NET
And also..
by
_Amy
Forum Message
8 May 2013
You need to format it properly. I wish, I could have written for my mind:Mind.AsEnumerable().Where(m => m["EmptyCorner"] == "").ToList().ForEach(s => s.SetF
General Discussions
»
Article "Take The Data Of “Gridview” To Excel .The Data Is In Itemssource As Anonymoustype ,Table Or Dataview"
Confusion in using of RowDatabound() and Databound()
by
_Amy
Answer
8 May 2013
license:
CPOL
See the similar answer I've given here:DataBound and RowDataBound[^]Before the GridView control can be rendered, each row in the control must be bound to a record in the data source. The RowDataBound event is raised when a data row (represented by a GridViewRow object) is bound to data in...
General Programming
»
Uncategorised Quick Answers
»
General
ASP.NET
How to Insert output of one query to another table
by
_Amy
Answer
8 May 2013
license:
CPOL
Try giving same Alias Names. See this:insert into a(aa,b,c,d) SELECT @curRank :=IF(@prevVal= exammarks.Test1, @curRank, @studentN) AS aa,@percentile := IF(@prevVal=exammarks.Test1 , @percentile,(@totalS - @studentN + 1)/(@totalS)*100) as b,@studentN := @studentN + 1 as...
General Programming
»
Uncategorised Quick Answers
»
General
C#
MySQL
CrystalReports
show rows in column wise
by
_Amy
Answer
7 May 2013
license:
CPOL
It is called Pivoting, see the links below:MSDN : Using PIVOT and UNPIVOT[^]SQL SERVER – PIVOT and UNPIVOT Table Examples[^]--Amit
General Programming
»
Uncategorised Quick Answers
»
General
sqlserver2008
Problem facing in GridView paging
by
_Amy
Answer
7 May 2013
license:
CPOL
The error means that Only one data source you can apply to the gridview. In your case you are binding the gridview using DataSourceID="sdsInbox" as well as in gvInbox_PageIndexChanging. Delete one databinding, it'll work.Refer the links:GridView Examples for ASP.NET 2.0: Paging and Sorting...
General Programming
»
Uncategorised Quick Answers
»
General
ASP.NET
The ConnectionString property has not been initialized
by
_Amy
Answer
7 May 2013
license:
CPOL
Try this:private static string GetConnectionString(){ return "data source=.\\SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|\\IMS.mdf;User Instance=true";}private static void OpenConnection(SqlConnection connection){ connection.ConnectionString =...
General Programming
»
Uncategorised Quick Answers
»
General
ASP.NET
Grid View in ASP.NET
by
_Amy
Answer
6 May 2013
license:
CPOL
Store the table value(from both pages) in session and fetch it wherever it is required. Write LINQ join[^] query to fetch the data according to the need.--Amit
General Programming
»
Uncategorised Quick Answers
»
General
ASP.NET
Re: where to start
by
_Amy
Forum Message
5 May 2013
I would suggest you to start you Asp.net Journy with MSDN : ASP.NET[
Web Development
»
Asp.Net
show exception message with java script
by
_Amy
Answer
5 May 2013
license:
CPOL
Try this:Page.ClientScript.RegisterStartupScript(this.GetType(), "Error1", string.Format("alert('{0}'); location.href='AddTender.aspx';", ex.ToString().Replace("'", "\\'")));--Amit
General Programming
»
Uncategorised Quick Answers
»
General
ASP.NET
Javascript
How to get value from dynamic control in update panel
by
_Amy
Answer
5 May 2013
license:
CPOL
Always create your dynamic control in Page_Init event (Read this[^] and this[^] for a detailed information).Change your CS. Try this://Create the controls in this page eventprotected void Page_Init(object sender, EventArgs e){ DropDownList ddlAgent = new DropDownList(); ...
General Programming
»
Uncategorised Quick Answers
»
General
ASP.NET
allow only predefine charecter in textbox
by
_Amy
Answer
5 May 2013
license:
CPOL
You are already passing Textbox Object and Your Predefined Chars to your function. Match the chars there with key codes[^]. Try this:HTML:JavaScript:function allowChar(textbox, chars){ ...
General Programming
»
Uncategorised Quick Answers
»
General
Javascript
HTML
How to update the visibility of controls which are outside of updatepanel during partial page rendering?
by
_Amy
Answer
5 May 2013
license:
CPOL
Refer the link below:How to update controls which are outside of updatepanel during partial page rendering?[^]Hope it helps!--Amit
General Programming
»
Uncategorised Quick Answers
»
General
C#
ASP.NET
how to solve the instance-specific error
by
_Amy
Answer
2 May 2013
license:
CPOL
Did you Google[^] it. Check the top links below:7 things to check to resolve “A network-related or instance-specific error occurred while establishing a connection to SQL Server[^]A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server...
General Programming
»
Uncategorised Quick Answers
»
General
ASP.NET
Date format issues...in Crystal Reports
by
_Amy
Answer
2 May 2013
license:
CPOL
You can format your date in CR. Refer the links below:Formatting Dates in Crystal Reports[^]Switching date format in Crystal Reports[^]Crystal Report Tricks and Tips[^]See the similar threads:CRYSTAL REPORTS: HOW TO CHANGE DATE FORMAT OF CRYSTAL REPORT FIELD FROM ASP.NET[^]How to...
General Programming
»
Uncategorised Quick Answers
»
General
CrystalReports
Can you please tell me where the error is
by
_Amy
Answer
2 May 2013
license:
CPOL
If you are opening a node, you should close it. Try this: 05/02/13 12:37:13 NEW...
General Programming
»
Uncategorised Quick Answers
»
General
HTML
Re: Better as a tip.
by
_Amy
Forum Message
1 May 2013
Oh! I didn't see that. My approval. :):thumbsup::thumbsup: I wish, I could have written for my mind:Mind.AsEnumerable().Where(m => m["EmptyCorner"] == "").ToLi
General Discussions
»
Article "Rest With Wcf And Entity Framework With Json Serialization"
Better as a tip.
by
_Amy
Forum Message
1 May 2013
Not enough for an article. Better, post it as a tip. I wish, I could have written for my mind:Mind.AsEnumerable().Where(m => m["EmptyCorner"] == "").ToList().F
General Discussions
»
Article "Rest With Wcf And Entity Framework With Json Serialization"
How to get the Today's data from SQL
by
_Amy
Answer
29 Apr 2013
license:
CPOL
Try this:SELECT * FROM Table1 WHERE CONVERT(DATE,CONVERT(DATETIME, YourColumnName, 103))=CONVERT(DATE, GETDATE()) AND Name='YourParameter'--Amit
General Programming
»
Uncategorised Quick Answers
»
General
SQL
VB
VB.NET
how to retrieve images from sql database in asp.net
by
_Amy
Answer
29 Apr 2013
license:
CPOL
You could have Googled[^] for it. See the top links below:http://nareshkamuni.blogspot.in/2012/02/insert-image-into-sqlserver-database-by.html[^]load image from sql server to image control asp.net[^]how to retrieve image from sql server database and show on asp .net image control?[^]how...
General Programming
»
Uncategorised Quick Answers
»
General
ASP.NET
how to view image from database in a listview
by
_Amy
Answer
26 Apr 2013
license:
CPOL
You could have tried Google[^] for the solution.Refer the links below:Show Image in Listview retrieve from database in ASP.net[^]How To Retrieve Image from Database in ListView Control in asp.net 3.5 [^]How to Retrieve Images from Database into Listview using Eval()[^]--Amit
General Programming
»
Uncategorised Quick Answers
»
General
ASP.NET
database
ListView
How can I pass the date value to another page?
by
_Amy
Answer
25 Apr 2013
license:
CPOL
You should encode the datestring. Just replace the "/" with "%2F"Page 1:string s = date.ToString();//Suppose date is "04/06/2013"s = s.Replace("/", "%2F");Response.Ridirect("confirm.aspx? &tariff_id= " + tariff_id + " &total_price= " + total_price+ " &date= " +s);Page 2:string s =...
General Programming
»
Uncategorised Quick Answers
»
General
C#
ASP.NET
SQL
I Need the explanation of these lines in c#
by
_Amy
Answer
25 Apr 2013
license:
CPOL
See the basic explanation of your code:Employee a;It's a simple variable declaration of Employee type.new Employee();Invoking constructor of Employee class(Initializing Employee class).e = new Employee();Create object on the heap and invoke constructor of Employee class. Object e...
General Programming
»
Uncategorised Quick Answers
»
General
C#
ASP.NET
Re: Remove voting request.
by
_Amy
Forum Message
25 Apr 2013
You containts looks good. Only because of some silly mistakes you may loss the chance. You should not do that. Any questions related to article you can ask in
General Discussions
»
Article "Azure Animal Adoption Agent"
Remove voting request.
by
_Amy
Forum Message
25 Apr 2013
Remove the voting request from subject field. It is abusive. I wish, I could have written for my mind:Mind.AsEnumerable().Where(m => m["EmptyCorner"] == "").To
General Discussions
»
Article "Azure Animal Adoption Agent"
Re: MSDN downloads not working
by
_Amy
Forum Message
24 Apr 2013
You might have disqualified. :laugh: :laugh: :laugh: I wish, I could have written for my mind:Mind.AsEnumerable().Where(m => m["EmptyCorner"] == "").ToList(
General Discussions
»
The Lounge
want to delete row from gridview
by
_Amy
Answer
24 Apr 2013
license:
CPOL
Get the GridViewRow through the parent of your command source and then try finding the label.Try this:GrieViewRow row = (GridViewRow)((LinkButton)e.CommandSource).Parent.Parent;var id = ((Label)row.FindControl("lblid")).Text.Trim();--Amit
General Programming
»
Uncategorised Quick Answers
»
General
ASP.NET
how to customize paging Telerik Rad Grid View
by
_Amy
Answer
23 Apr 2013
license:
CPOL
Refer the links below for samples:Grid - Custom Paging[^]RadControls for ASP.NET AJAX Documentation[^]Also see similar threads:Custom Paging for Rad Grid[^]radgrid custom grouping when custom paging[^]Hope it helps!--Amit
General Programming
»
Uncategorised Quick Answers
»
General
ASP.NET
File Upload Control not working
by
_Amy
Answer
23 Apr 2013
license:
CPOL
Form must be encoded with multipart/form-data if we want to upload the file using fileupload which is there in updatepanel. Change encoded attribute of form with following code in page_load event of page.Page.Form.Attributes.Add("enctype", "multipart/form-data");--Amit
General Programming
»
Uncategorised Quick Answers
»
General
C#
ASP.NET
Button click popup a new window
by
_Amy
Answer
23 Apr 2013
license:
CPOL
Don't be afraid to use google[^]. See the top 3 links:Pass values from Popup window to parent window using javascript[^]javascript - pass selected value from popup window to parent window input box[^]Passing Value From Popup Window To Parent Window[^]--Amit
General Programming
»
Uncategorised Quick Answers
»
General
C#
ASP.NET
MS-Access
how to call instance method in web method and this web method i need to call on onblur event of textbox
by
_Amy
Answer
23 Apr 2013
license:
CPOL
Raj Wrote:how to call instance method in web method?Since webservice is a static method, it can only call other static methods or new objects.WebMethod:[WebMethod]public static void ResetDate(DateTime TheNewDate){ var thisPage = new Test(); ...
General Programming
»
Uncategorised Quick Answers
»
General
ASP.NET
java script in Asp.net in method
by
_Amy
Answer
23 Apr 2013
license:
CPOL
Try this:You'll have to modify your loop also.. Style will not work in alert box. Try this:for (int i = 0; i
General Programming
»
Uncategorised Quick Answers
»
General
C#
ASP.NET
Ajax
asp.net url rewriting
by
_Amy
Answer
22 Apr 2013
license:
CPOL
Refer the links for URL rewriteing;[]MSDN : URL Rewriting in ASP.NET[^]URL Rewriting with URLRewriter.Net Simplest Way[^]A Complete URL Rewriting Solution for ASP.NET[^]URL Rewriting with ASP.NET[^]Tip/Trick: Url Rewriting with ASP.NET[^]URL Rewriting in ASP.NET using global.asax and...
General Programming
»
Uncategorised Quick Answers
»
General
C#
ASP.NET
HTML
How to send email when application is not running?
by
_Amy
Answer
22 Apr 2013
license:
CPOL
You should Configure Database Mail – Send Email From SQL Database[^]. You can also Schedule a Job[^] to send mails periodically. Refer the links below:Database Mail Configuration Wizard[^]SQL SERVER - 2008 - Configure Database Mail - Send Email From SQL Database[^]And also check How...
General Programming
»
Uncategorised Quick Answers
»
General
C#
ASP.NET
Open and Edit ExcelSheet in Asp.net
by
_Amy
Answer
22 Apr 2013
license:
CPOL
Refer the links below: .NET Excel Wrapper - Read, Write, Edit & Automate Excel Files in .NET with ease[^]Also check How to open, edit and save a Excel Document in ASP C#[^].--Amit
General Programming
»
Uncategorised Quick Answers
»
General
ASP.NET
Telerik Error when click on button
by
_Amy
Answer
22 Apr 2013
license:
CPOL
The action that causes this code to execute MUST be a postback event, and not an AJAX call. This is due to the nature of the way AJAX requests are processed.Check Sys.WebForms.PageRequestManagerParserErrorException - what it is and how to avoid it[^]Hope it helps!--Amit
General Programming
»
Uncategorised Quick Answers
»
General
C#
ASP.NET
Telerik
Page 1 of 28
1
2
3
4
5
6
7
8
9
10
First
·
Prev
·
Next
·
Last
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