16,016,204 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 C++ questions
View Javascript questions
View Visual Basic questions
View .NET 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 Member 14872744 (Top 8 by date)
Member 14872744
19-Sep-20 5:54am
View
Now, that I have installed all the necessary packages, when i run the command update-database in my package manager console, it still throws error stating Your project does not contain reference for EntityFramework. Ensure your target project is correct, install the package and try again.
Member 14872744
18-Sep-20 9:05am
View
Thanks for the reply I havent installed Microsoft.EntityFrameworkCore.Tools package
Member 14872744
11-Aug-20 8:03am
View
I am not able to get the bind the datasource to the bootstrap dropdownlist. It shows error at this line
ddlbrands.DataSource = ds; // HtmlGenericControl does not contain a definition for DataSource
Member 14872744
31-Jul-20 5:51am
View
Thanks a lot Sir, I made a mistake in my database. I rectified and that worked
Member 14872744
31-Jul-20 3:54am
View
Still the image is not visible image src formed is
and the image is not available at this url.. what do I do ?
Member 14872744
31-Jul-20 2:16am
View
<asp:tablerow id="imagerow" runat="server">
<asp:tablecell>
<asp:image id="productimage" runat="server"
="" imageurl="<%#"data:Image/png;base64," + Convert.ToBase64String((byte[])Eval("ProductImage")) %>" height="30px" width="40px">
I have done this... but still it isnt showing my image. Using the developer tool, when I check the source of the image i get the following link src="data:Image/png;base64,flxJbWFnZVxrYWphbC5qcGc="
I am not able to find out where am I going wrong
Member 14872744
25-Jun-20 13:00pm
View
My modified code
$(document).ready(function () {
var customers = new Bloodhound({
datumTokenizer: Bloodhound.tokenizers.obj.whitespace('customerName'),
queryTokenizer: Bloodhound.tokenizers.whitespace,
remote: {
url: '/api/Customers?query=%QUERY',
wildcard: '%QUERY'
},
sufficient: 25
});
$('#customer').typeahead(
{
minLength: 2,
highlight: true
}, {
limit: 25,
name: 'customers',
display: 'customerName',
source: customers
});
});
Member 14872744
25-Jun-20 12:52pm
View
Thanks a lot for your response...
I have tried it by writing all the code at the page load event ie $(document).ready().. it still works the same as in the above code ie... I get all the customer names from the database instead of the matching ones.. My requirement is to get the matching ones only and not the complete list of customers.
Show More