Saturday, 15 August 2015

Multi-level Marketing System using ASP.NET ( C# )

Multi-level Marketing System : Using ASP.NET ( C# )


Here, I have developed a solution that gives you a complete solution on Multi-level marketing Business Solution. Basically , it has admin , visitor and registered members they all together buy a minimum level of goods and started their business ( Own ). i have used Microsoft Visual Studio 2012 and SQL Server 2008. it has also Payment section and Tree View that make look and feeling Good .

Below are some screen shot :






If you are interested to contact with me . Just Give a message below !


Tuesday, 7 April 2015

Sample website using HTML and CSS

Step - 1
 
 
At first you open Notepad++ or if you don't have this software please search at Google and download it first because I have edit this project with it.
 
 
Step - 2
 
 
Here, Notepad++ will look like this -
 
 
 
Then you will choose language preference to HTML .

 
Full Code for this application is shown below -
 
File name: sample.html
 
<!doctype html>
<html lang="en">
<head>
 <meta charset="utf-8"/>
 <title>Sample Website </title>
 <link rel="stylesheet" href="main.css"/>
</head>
<body>
 <div id="big_wrapper">
  <header id="top_header">
   <h1>Welcome User!</h1>
  </header>
 
  <nav id="top_menu">
   <ul>
    <li>Home </li>
    <li>Tutorials</li>
    <li>About</li>
   </ul>
  </nav>
 
  <section id="main_section">
   <article>
    <header>
     <hgroup>
      <h1>Title of the Article1</h1>
      <h2>SubTitle of the Article1 !</h2>
     </hgroup>
    </header>
    <p>This is the best article eva!</p>
    <footer>
     <p>--- Written by ABC</p>
    </footer>
   </article>
   <article>
    <header>
     <hgroup>
      <h1>Title of the Article2</h1>
      <h2>SubTitle of the Article2 !</h2>
     </hgroup>
    </header>
    <p>This is the best article eva!</p>
    <footer>
     <p>--- Written by ABCD</p>
    </footer>
   </article>
  </section>
  <aside id="side_news">
   <h4>News</h4>
   ABC has a new dog !.</h4>
  </aside>
  <footer id="the_footer">
  Copyright &copy Sample 2015
  </footer>
 </div>
</body>
</html>
 
File name: main.css
 
*{
 margin:0px;
 padding:0px;
}
h1{
 font:bold 20px Tahoma;
}
h2{
 font:bold 14px Tahoma;
}
header, section, footer, aside,nav,article,hgroup{
 display:block;
}
body{
 text-align:center;
}
#big_wrapper{
 border:1px solid black;
 width:1000px;
 margin: 20px auto;
 text-align:left;
}
#top_header{
 background:yellow;
 border:1px solid blue;
 padding:20px;
}
#top_menu{
 background:blue;
 color:white;
}
#top_menu li{
 display:inline-block;
 list-style:none;
 padding:5px;
 font: bold 14px Tahoma;
}
#main_section{
 float:left;
 width:660px;
 margin:30px; /* 720px , 280 left */
}
article{
 background:#FFFBCC;
 border:1px solid red;
 padding: 20px;
 margin-bottom: 15px;
}
article footer{
 text-align:right;
}
#side_news{
 float:left;
 width:220px;
 margin:20px 0px;
 padding: 30px;
 background: #66CCCC;
}
#the_footer{
 clear:both;
 text-align:center;
 padding:20px;
 border-top:2px solid green;
}
Step - 3
 
 
Finally,  it will look like this .
 
CSS Property :
 
 CSS property is access by html id property and it will show in below .
 
 
Now, thank you for opening  this link and I hope you enjoy with this Tutorial.

 


Tuesday, 10 March 2015

Online Bus Reservation System project source code - using asp.net 4.0

Here I have some screen shot that brings you a real project background details.

At first, this is front page. Second Page is Seat Layout. Third Page is Booking Seat Layout and Last is Confirm Page of booking information.





If you really need source code you just send a email at jyotishsamanta@gmail.com  .

For Demo click here : http://jsamanta-001-site1.smarterasp.net/


Sunday, 2 March 2014

How do you create calendercontrol for your asp.net website

Step - 1

Choose your current visual studio and now i used visual studio 2012 Ultimate .

Step - 2


Click Web Empty Application from Visual Studio New Project Wizard .

Step - 3


Now open empty Application and right click on ["Name of Your Application "] from Solution Explorer see below :


Step - 4


After adding New Item from solution explorer you will see a choose wizard for what type file would you add :


Step - 5


Now you type inside 'div' portion choose a calendercontrol from Toolbox as shown below :


After you will simply run this web application and you will get your first calender control Web Application .