Friday 20 May 2022

Introduction Entity Framework for Begina record display | ASP.NET MVC C#

Entity Framework (EF)

Entity Framework (EF) is developed by Microsoft which automates the database insert,Update,select and delete (CRUD) operations without manually coding. ER increase the development time because database-related task is done without long code. 

This post will help you understand ER operation. This post is designed for beginners as well as experts both. Step by step instruction is given to display records from SQL Server. 

Friday 8 April 2022

Send Whatapp message from contact form | PHP

 

PHP Code

<?php

if(isset($_POST['submit']))
{

 

$str="https://wa.me/+91-9795000000?text=";

$str.="Roll%20:%20" . preg_replace('/ /','%20',$_POST['Roll']);

$str.= ",Name%20:%20. preg_replace('/ /','%20',$_POST['Name']);

$str.=",City%20:%20" . preg_replace('/ /','%20',$_POST['City']);

header("Location: $str");
}

?>          


HTML

<form method="post" style="margin:4%">

 

    <input type="text" name="Roll" /><br />

    <input type="text" name="Name" /><br />

    <input type="text" name="City" /><br />

    <input type="submit" name="submit" value="Send" />

 

</form>


Monday 28 March 2022

Hotel Management System Synopsis Download Free

 


Hotel  Management System Synopsis Download Free PDF and Word Version.

 Click to   Download Hotel   Management System System Synopsis PDF Version 



 Click to Download  Hotel    Management System Synopsis Synopsis Word Editable Version. 



Saturday 26 March 2022

Real Estate Management System Synopsis Download Free

 



Real Estate Management System Synopsis Download Free PDF and Word Version.

 Click to   Download Real Estate Management System System Synopsis PDF Version 


 Click to Download  Real Estate Management System Synopsis Synopsis Word Editable Version. 






Saturday 19 March 2022

Coaching Management System Synopsis Download Free

 

Coaching Management System Synopsis Download Free

Coaching Management System Synopsis Download Free PDF and Word Version.


Click to   Download Coaching Management System System Synopsis PDF Version 


Click to Download  Coaching Management System Synopsis Synopsis Word Editable Version.


Wednesday 16 March 2022

Parameterized Repository ASP.Net C#

 public bool SavePackage(PackageModel data, ref string ErrMsg)
        {

            String result = "";
            string sql = "insert into Package (PackageName,Price) values(@PackageName,@Price)";
            try
            {

Tuesday 15 March 2022

FMCG Management System Synopsis Download Free

 

FMCG  Management System Synopsis Download Free

FMCG Management System Synopsis Download Free PDF and Word Version.


Click to   Download FMCG  Management System System Synopsis PDF Version 


Click to Download  FMCG   Management System Synopsis Synopsis Word Editable Version.




Next Synopsis

Layout In CI

Step 1 :

Make a folder named shared in app/Views

Step 2 : 

Make 3 files named menu.php,footer.php,layout.php

menu.php : will hold menu of website

layout.php : will hold master layout page for your website

footer.php : will hold footer code 

Sunday 13 March 2022

Play School Management System Synopsis Download Free

Play School Management System Synopsis Download Free

Play School Management System Synopsis Download Free PDF and Word Version.


Click to   Download Play School Management System System Synopsis PDF Version 

  Click to Download  Play School Management System Synopsis Synopsis Word Editable Version.


Download  Next Synopsis



Library Management System Synopsis Download Free

 

Library Management System Synopsis Download Free


Library   Management System Synopsis Download Free PDF and Word Version.


 Click to   Download Library  Management System System Synopsis PDF Version 


 Click to Download  Library     Management System Synopsis Synopsis Word Editable Version.



Thursday 10 March 2022

Online Exam Management System Synopsis Download Free

 

Online Exam Management

Online Exam Management System Synopsis Download Free PDF and Word Version .

   Click to   Download Online Exam Management System System Synopsis PDF Version 


 Click to Download  Online Exam Management System Synopsis Synopsis Word Editable Version.




Sunday 6 March 2022

Student Fee Management System Synopsis Download Free

 


Student Fee Management System Synopsis Download Free PDF and Word Version .

  Click to   Download Student Fee Management System System Synopsis PDF Version 


  Click to Download  Student Fee Management System Synopsis Synopsis Word Editable Version.






Saturday 5 March 2022

Primary School Management System Synopsis Download Free

 

Primary School Management System Synopsis Download Free


Primary School Management System Synopsis Download Free PDF and Word Version .


  Click to   Download Primary School Management System System Synopsis PDF Version 

 Click to Download  Primary School Management System Synopsis Synopsis Word Editable Version.



Friday 4 March 2022

Student Management System Synopsis Download Free

 

Inter College Management Synopsis Download Free PDF and Word Version

Student Management System Synopsis Download Free PDF and Word Version .


 Click to   Download Student Management System Synopsis PDF Version 


Click to Download  Student Management System Synopsis Synopsis Word Editable Version



Saturday 26 February 2022

Inter College Management Synopsis Download Free




 Inter College Management Synopsis Download Free PDF and Word Version 


Click to   Download Inter College Management Synopsis PDF Version 


Click to Download  Inter College Management Synopsis Word Editable Version


Force to Refresh Javascript and CSS files on page load

 To force Javascript and CSS files on every time while page load is good practice when working on live operation because when you made any change in CSS and Javascript files then updated content reflects when cntl + f5 pressed otherwise system get file from cash to save to reload time. Given code below help you to force reload file on every page load in C# ASP.Net MVC.


@{
    Random ob = new Random();
    int ran = ob.Next();
}

<script src="~/AppJs/product.js?v=@ran"></script>
<link href="~/AppCss/gcss.css?v=@ran" rel="stylesheet" type="text/css">

Friday 25 February 2022

Book Shop Management Synopsis Download Free

Book Shop Management Synopsis


  Book Management Synopsis Download Free PDF and Word Version 


Click to   Download School Management Synopsis PDF Version 


Download  Book Shoop Management Synopsis Word Editable Version


Next Project

Wednesday 23 February 2022

School Management Synopsis Download Free



 School Management Synopsis Download Free PDF and Word Version 



                           

 Click to   Download School Management Synopsis PDF Version 

                                 





Thursday 10 February 2022

Begin CodeIgniter 4.1.8

Whoops! We seem to have hit a snag. Please try again later

Solution : 


Your PHP is missing intl extension. It is useful for formatting currency, number and date/time as well as UCA-conformant collations, for message formatting and normalizing text..etc.


Follow the steps to install it in XAMPP -

  • Open [xampp_folder_path]/php/php.ini to edit.
  • Search for ;extension=intl and remove the ;.
  • Save the php.ini file and restart Apache.

Thursday 13 January 2022

Multiple file upload by form post ASP.NET C# MVC


Multiple file upload by form post ASP.NET C# MVC


This post will let you upload multiple image files through a single form post using the C# ASP.Net MVC platform.

Key Point

  • Upload multiple image files with a new name
  • Save a associate record and file name will be newly created record identity field value
  • No need to save the image name in the database because the file name will start with a record ID and end with a text. 
  • Best for putting student, employee documents without any hassle. 

HTML Code : 

<form method="post" enctype="multipart/form-data">

     @Html.AntiForgeryToken()

    <p class="m-0">

        Photo

        <input type="file" name="Photo" id="Photo" accept="image/x-png,image/jpeg" />

        <br />

        Adhaar

        <input type="file" name="Adhaar" id="Adhaar" accept="image/x-png,image/jpeg" />

        <br />

        Pan

        <input type="file" name="Pan" id="Pan" accept="image/x-png,image/jpeg" />

        <br />

        <input type="checkbox" id="chkconfirm" /> I provide my consent. I will follow the Tangentweb term condition and policy.

        <br /> <br />

        <input type="submit" value="Save" class="button button-primary button-wide-mobile" onclick="return filecheck()" />

    </p> 

</form>