Theme ‘Standard’ cannot be found in the application or global theme directories

Check necessary files in the App_Themes directory. When we publish our project then some files could be missed. Right click on that file (that are missed) click on property and choose “Copy to Output Directory” set as “Copy always“.

Unable to evaluate expression because the code is optimized or a native frame is on top of the call stack

This exception occur when we try to redirect a page. Solution: To solve this problem we should use second argument of Response.Redirect that will stop current page’s execution and move to next page. Sencond argument should be false. Full solution is below [sociallocker] Response.Redirect(“http://www.wisdomitsol.com”,false); [/sociallocker]

Convert any file into byte array or byte array into string in Android

How to convert image or video file into byte[] or byte[] into String in Android: TO upload image, video or any other file on server fro Android app we need to convert that image / video file to string or upload byte by byte. Note: this method is suite able for small files (image, video, …