15,560,073 members
Sign in
Sign in
Email
Password
Forgot your password?
Sign in with
home
articles
Browse Topics
>
Latest Articles
Top Articles
Posting/Update Guidelines
Article Help Forum
Submit an article or tip
Import GitHub Project
Import your Blog
quick answers
Q&A
Ask a Question
View Unanswered Questions
View All Questions
View C# questions
View Python questions
View Javascript questions
View C++ questions
View Java questions
discussions
forums
CodeProject.AI Server
All Message Boards...
Application Lifecycle
>
Running a Business
Sales / Marketing
Collaboration / Beta Testing
Work Issues
Design and Architecture
Artificial Intelligence
ASP.NET
JavaScript
Internet of Things
C / C++ / MFC
>
ATL / WTL / STL
Managed C++/CLI
C#
Free Tools
Objective-C and Swift
Database
Hardware & Devices
>
System Admin
Hosting and Servers
Java
Linux Programming
Python
.NET (Core and Framework)
Android
iOS
Mobile
WPF
Visual Basic
Web Development
Site Bugs / Suggestions
Spam and Abuse Watch
features
features
Competitions
News
The Insider Newsletter
The Daily Build Newsletter
Newsletter archive
Surveys
CodeProject Stuff
community
lounge
Who's Who
Most Valuable Professionals
The Lounge
The CodeProject Blog
Where I Am: Member Photos
The Insider News
The Weird & The Wonderful
help
?
What is 'CodeProject'?
General FAQ
Ask a Question
Bugs and Suggestions
Article Help Forum
About Us
Search within:
Articles
Quick Answers
Messages
Comments by Mitesh Prajapati14 (Top 5 by date)
Mitesh Prajapati14
13-Dec-14 2:01am
View
You need to store cart products into session. when user will logged in then you need to save that session object values into database with customer id.
Mitesh Prajapati14
13-Nov-14 2:06am
View
As per your stored procedure, you can define like this:
DECLARE @isInfo INT
SELECT @isInfo = f.IsNFO FROM FAInvStatic Where <<your where condition>>
IF ISNULL(@isInfo, 0) = 1
BEGIN
<<your condition here>>
END
ELSE
BEGIN
<<your condition here>>
END
Mitesh Prajapati14
13-Nov-14 1:43am
View
Can you post your stored procedure here? so we can give you best solution
Mitesh Prajapati14
12-Nov-14 1:51am
View
first check your image path on webserver. may be your image path is wrong.
Mitesh Prajapati14
12-Nov-14 1:02am
View
As per your code you need to pass record primary key in where condition. so it will not update all the record in db.
Current query will update all status where status='N'
your new query should be like this :
"update tbldata set status='Y' where status='N' and id=@id"