Miron

Stories submitted by Miron

Limit uploaded files size in FCKeditor(mironabramson.com)

submitted by MironMiron(495) 2 years, 8 months ago

Set the maximum size allowed for uploaded files in FCKeditor read more...

add a comment |category: |Views: 174

tags: another

HttpCompression on IIS7 (Using MbCompression library)(mironabramson.com)

submitted by MironMiron(495) 2 years, 10 months ago

If You have full control on the server, you probably don't need my compression library MbCompression, But if you are using share hosting, sure you do. read more...

add a comment |category: |Views: 22

tags: another

Cropping image using jQuery, Jcrop and ASP.NET(blog.mironabramson.com)

submitted by MironMiron(495) 3 years, 1 month ago

Fast and easy cropping image with ASP.NET, jQuery and Jcop (C#) read more...

2 comments |category: |Views: 647

tags: another

Why I think I will stick with WebForms(mironabramson.com)

submitted by MironMiron(495) 3 years, 3 months ago

The MVC concept is clear and logic and the guys at Microsoft did a very good job with the new MVC Framework , But I think I will stick with the 'old fashioned' WebForms and this is why: read more...

add a comment |category: |Views: 33

tags: another

Generate thumbnails on the fly - Yet another version(blog.mironabramson.com)

submitted by MironMiron(495) 3 years, 3 months ago

Generate thumbnails on the fly. You can specified maximum height, maximum width, both, specified quality (1-100) and if the image will be cached or not. It is working well with .jpg, .bmp, .png and .gif. read more...

add a comment |category: |Views: 29

tags: another

Events from Accordion control are not being fired problem(mironabramson.com)

submitted by MironMiron(495) 3 years, 5 months ago

Events from control inside Accordion control are not being fired on first click read more...

add a comment |category: |Views: 23

tags: another

Fast version of the Activator.CreateInstance method using IL(blog.mironabramson.com)

submitted by MironMiron(495) 3 years, 9 months ago

Fast version of Activator.CreateInstance(Type) and Activator.CreateInstance<T>() methods using IL to improve performance. read more...

add a comment |category: |Views: 75

tags: another

High performance css minifier(mironabramson.com)

submitted by MironMiron(495) 3 years, 10 months ago

CSS minifier based on jsmin idea that produce a small CSS file, much faster, and with much less memory overhead. read more...

add a comment |category: |Views: 292

tags: another

Create your own new Type and use it on run-time (C#)(blog.mironabramson.com)

submitted by MironMiron(495) 3 years, 11 months ago

It is not something you will use on daily bases. It doesn't have good performance. But one day, you will have to use it so it's good to know that it is possible and how it can be done. As you can understand from the title, I'm talking about creating a new type with fields and properties (it can also have methods), create instance/s from it and use it - on run-time! read more...

2 comments |category: |Views: 22

tags: another

An open source library to compress css, js, aspx and Webresource.axd(codeplex.com)

submitted by MironMiron(495) 4 years ago

MbCompression is a library of handlers and modules to compress Css files, JavaScript files, pages and compress WebResource.axd It is easy to implement and improve the overall performance of your web project. The most unique Feature of that library is that the System.Web.Handlers.AssemblyResourceLoader that load the WebResources was rewritten to enable compression and better performance, without making HTTP request each time WebResource need to be served. read more...

add a comment |category: |Views: 16

tags: another

Prevent from the user to submit any 'not legal' input, in client side(mironabramson.com)

submitted by MironMiron(495) 4 years ago

Prevent from the user to submit any 'not legal' input, using client side validation. What if you have a rule that is for all inputs in the page, or in the site? for example, you want to prevent the user to submit any input that contains 'fuc*' , 'shi*' or what ever words that are not 'legal' for you, or input that is not valid for the ASP.NET such '<'or '/>' ? read more...

add a comment |category: |Views: 4

tags: another

Sorting a collection using Linq and 'SortExpression' string(mironabramson.com)

submitted by MironMiron(495) 4 years ago

Already happened to you that you had a collection of object from type 'X' with some properties, and you had to sort it one time by property 'ID', and another time by property 'Name' ? read more...

add a comment |category: |Views: 12

tags: another

Some basic but useful C# methods implemented in JavaScript(mironabramson.com)

submitted by MironMiron(495) 4 years ago

Some basic but useful C# methods implemented in js: Cach object (ok, it is not a 'method') , String.Format(), String.IsNullOrEmpty(), StartsWith(), EndsWith() and Trim() read more...

add a comment |category: |Views: 3

tags: another

Uniform Distribution algorithm in C#(mironabramson.com)

submitted by MironMiron(495) 4 years, 1 month ago

Uniform Distribution algorithm in C#. The algorithm gets a string and maps it into the set 0-999 (or any given range) with uniform distribution read more...

add a comment |category: |Views: 70

tags: another

Extensions can make us free from testing against null(mironabramson.com)

submitted by MironMiron(495) 4 years, 2 months ago

Extensions can make us free from testing against null, and help us avoiding errors on runtime environment. read more...

add a comment |category: |Views: 0

tags: another

Really quick "Downloads" page in ASP.NET(mironabramson.com)

submitted by MironMiron(495) 4 years, 2 months ago

Really quick "Downloads" page in ASP.NET read more...

add a comment |category: |Views: 1

tags: another