Tuesday, 29 March 2016

Access denied; you need the SUPER privilege for this operation

Access denied; you need the SUPER privilege for this operation ERROR  This Stored Procedure  used to only on Localhost CREATE DEFINER=`root`@`localhost` PROCEDURE `sp_delete_course`(In eid INT) BEGIN delete  from `courses` where courseid=eid; END REMOVE DEFINER=`root`@`localhost` Working...

Thursday, 24 March 2016

Complete Comparison for VB.NET and C#

1 comment    
categories: , , ,
Complete Comparison for VB.NET and C# Visual Basic [.NET] (VB.NET) is a multi-paradigm, high-level programming language, implemented on the .NET Framework. Microsoft launched VB.NET in 2002 as the successor to its original Visual Basic language. C# (pronounced "C-sharp") is an object-oriented programming language from Microsoft that aims to combine the...

Textbox TextMode Property Date and DateTimeLocal Using Asp.Net c#

Textbox TextMode Property Date and DateTimeLocal We need date and datetime use in the Textbox add TextMode =Date or DateTimeLocal in the Textbox property.                                    DEMO  ...