I told my kids that and got response back saying: "Can we ask Santa to deliver presents via Drone delivery?" :laugh: ;P
Vincent Maverick Durano
Posts
-
The advantages of Covid. -
When you are tasked to build a quick POC app for a client demo...That makes sense! Most freshers are trying to impress their boss. 😁
-
When you are tasked to build a quick POC app for a client demo...... and applied SOLID principles, DDD and Clean architecture all at once! 🤣 https://www.facebook.com/100241151602732/posts/148409296785917/[^]
-
Alternative Resource For Tracking COVID StatusYup. Most of the datasets are from those sources.
-
Alternative Resource For Tracking COVID StatusThank you! Yes. I posted this on my blog as well here: COVID-19 Pandemic Status Tracker Web App using VueJS[^]
-
Alternative Resource For Tracking COVID StatusWith the current pandemic that we are experiencing, I find it inconvenient to get the latest case updates regarding COVID-19 globally and locally here in MN where we currently live. Social media info are most of the time outdated, inaccurate and other bogus websites presenting nonsense information. So I have decided to create a simple web app that gives us the core information in a glance without having to lurk the internet that works in both mobile and web browsers. The data used in the app are based on the main sources of information regarding COVID cases: US COVID Tracking Project,JHU CSSE, ArcGIS and ESRI The web app is a one stop site that covers US and Global case situation with Trend and Heat maps. I thought I'd share the app with you and hopefully you would find it helpful as well. Feel free to share it with your family and friends to keep everyone informed with the latest update on Corana virus. I'll keep adding more info to it whenever time permits. Here's the link: COVID-19 Status Tracker[^] Keep safe everyone!
-
Today marks six weeks......without sugar, beer and alcohol. Running 3 miles a day, no meat, dairy or flour. No caffeine! The change has been fantastic! I feel great! A healthy diet, gluten free, caffeine-free and sugar-free, and a 2-hour workout every day. I don't know whose status this is, but I was really proud of them. So I decided to copy and paste. :D
-
Aliens could be living among us on EarthCheers for the experience being an Alien! ;P
-
Aliens could be living among us on Earth#realJSOP wrote:
but I need to see proof
Politicians. Does that count? ;P
-
Aliens could be living among us on EarthI'm Asian working in the US, and yes I am Alien. :suss:
-
When you come back to work after long vacation...Nope. It works. ;P
-
When you come back to work after long vacation...The fun thing is I am working on multiple projects and they released major updates last week and my inbox was flooded with gazillion of emails and I don't know where to start. :laugh: :laugh: P.S: now I'm back on track! ;P
-
When you come back to work after long vacation...How was your inbox looked like? ;P
-
When you come back to work after long vacation... -
How to Import and Export Excel File in ASP.NET MVC?I did a quick search at google and got tons of results about it. Here are a few of them: Export And Import Excel File Using ClosedXML In ASP.NET MVC[^] Export to Excel in ASP.Net MVC[^] Import data from Excel file to SQL Server in ASP.Net MVC[^] PS: Before posting anything at the forums, please give this article a read: Programming Problems and Finding Solutions[^]
-
ASP.net postback url problemPlease do not repost questions. https://www.codeproject.com/Questions/5163973/Postback-url-problem[^]
-
Getting undefined in Cascading DropDownList In ASP.Core MVC ?That's great! Glad to be of help! :)
-
Getting undefined in Cascading DropDownList In ASP.Core MVC ?What error are you getting now? Still undefined? Please be specific also for the errors that you are currently getting.
-
Getting undefined in Cascading DropDownList In ASP.Core MVC ?You need to give ID's to all your controls that you reference in your jQuery and then use the IDs just like what I demonstrated. If you followed that and you are still getting error, then post your updated code here and show us which line you are getting the error.
-
Getting undefined in Cascading DropDownList In ASP.Core MVC ?You may have to set an ID attribute to your DropDownListFor control so you can reference them in your jQuery code. For example:
@Html.DropDownListFor(model => model.Country, ViewBag.state as List, { @id="ddlCountry", @class="YourCSSClassName" })
then in your jQuery, you can access it like this:
$("#ddlCountry").change(function () {
});