DotQuery
Friday, March 12, 2021
Image Hover effect
/* image over effect *
img
{
....:..;
....:..;
overflow
:
hidden
;
}
img:hover
{
-webkit-transform
:
scale
(
1.3
);
transform
:
scale
(
1.3
);
}
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
Raw Insert query in EF8 or Entity Framwork 8
public async Task<object> InsertRack(Rack RackInsert) { try { sql = " i...
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