DotQuery
Sunday, February 16, 2020
Direct landscape print in javascript or direct landscape print in jquery or direct landscape print in html
<script src="~/assets/js/jquery.min.js"></script>
<script>
$(document).ready(function () {
window.print();
})
</script>
<style type="text/css" media="print">
@page {
size: landscape;
}
</style>
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
Linq Expression syntax for where condtion in linq
(Expression<Func<T, bool>> filter)
Custom Form Athentication MVC
1. Customer Form Authentication Set on Controller 2. Set On Web config 3. Add Authentication Filter 4. Use Athentication Filter...
Dependency Injection in .net core 5
There are three of dependency injection executer, we will she their life time cycle 1. Scoped > It does not go to life time 2. Transient...
Delete in MVC with validation
No comments:
Post a Comment