এইচএসসি পরীক্ষার ফলাফল জানতে দেখুন আগামী ০৯ই আগষ্ট থেকে এখান থেকে এইচ এস সি পরিক্ষার ফলাফল দেখতে পারবেন অথবা শিক্ষা বোর্ড এর ওয়েবসাইট http://www.educationboardresults.gov.bd/regular/index.php থেকেও রেজাল্ট দেখতে পারবেন। মোবাইলের মাধ্যমে ফলাফল কিভাবে দেখবেন? HSC (Space) আপনার বোর্ড এর নামের প্রথম তিন অক্ষর (Space) রোল নম্বর (Space) পাশের সন এবং (16200) এ পাঠিয়ে দিন। উদাহরণ: আপনার …
Category: Root
Aug 07
AccessCounts.jsp Page that demonstrates JSP declarations.
AccessCounts.jsp Page that demonstrates JSP declarations. <!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.0 Transitional//EN”> <!– Taken from Core Web Programming Java 2 Edition from Prentice Hall and Sun Microsystems Press, . May be freely used or adapted. –> <HTML> <HEAD> <TITLE>JSP Declarations</TITLE> <META NAME=”keywords” CONTENT=”JSP,declarations,JavaServer,Pages,servlets”> <META NAME=”description” CONTENT=”A quick example of JSP declarations.”> …
Aug 07
PreparedStatements.java An example to test the timing differences resulting from repeated raw queries vs. repeated calls
package cwp; import java.sql.*; /** An example to test the timing differences resulting * from repeated raw queries vs. repeated calls to * prepared statements. These results will vary dramatically * among database servers and drivers. With my setup * and drivers, Oracle prepared statements took only half * the time that raw queries required …
Aug 06
এএসপি . নেট এম ভি সি এর উপর কিছু প্রশ্ন এবং উত্তর । Some questions and Answers on ASP.NET MVC
Some questions and Answers on ASP NET MVC
Aug 06
Some Questions and Answers on Razor View Engine
Some Questions and Answers on Razor View Engine
Aug 06
নোড.জেএস (Node. Js) টিউটোরিয়াল
মীর তাওহীদুল ইসলাম ওয়েব ডেভেলপার আজকে আপনাদের সামনে হাজির হলাম নোড জে এস এর টিউটোরিয়াল নিয়ে। আশা করি আপনাদের ভাল লাগবে। নোড জে এস জাভাস্ক্রিপ্ট এর উপর ভিত্তি করে গড়ে ওঠা খুবই শক্তিশালী একটি ফ্রেমওয়ার্ক বা প্লাটফর্ম যা গুগল ক্রোমের জাভাস্ক্রিপ্ট ভি এইট ইঞ্জিনে (V8 Engine) এ তৈরি করা হয়েছে। এই নোড জে এস …
Aug 06
Install Kentico CMS in Localhost
Install Kentico CMS in Localhost https://www.youtube.com/watch?v=KFcnunBi2GM
Aug 06
EmployeeCreation.java: Make a simple “employees” table using the database utilities
package cwp; import java.sql.*; /** Make a simple “employees” table using DatabaseUtilities. */ public class EmployeeCreation { public static Connection createEmployees(String driver, String url, String username, String password, boolean close) { String format = “(id int, firstname varchar(32), lastname varchar(32), ” + “language varchar(16), salary float)”; …
Aug 06
extract relevant data from a DBResults
# QueryViewer.java An interactive database query viewer. Connects to the specified Oracle or Sybase database, executes a query, and presents the results in a JTable. Uses the following file: * DBResultsTableModel.java Simple class that tells a JTable how to extract relevant data from a DBResults object (which is used to store the results from …
