utorak, 11. siječnja 2011.

New year, new posts....

Coming soon...

ponedjeljak, 18. siječnja 2010.

SQL 2008 on SBS 2008 Install nightmares

First - remove Sql Express tools, if that fails, take a good headache pills. If you rececive sometnih like this :
Could not open key: UNKNOWN\Components\1FA18F7974E099CD0AF18C3B9B1A1EE8\461C2B4266EDEF444B864AD6D9E5B613. Verify that you have sufficient access to that key, or contact your support personnel.
This workaround worked for me : secedit /configure /cfg %windir%\inf\defltbase.inf /db defltbase.sdb /verbose /areas REGKEYS
thanks to : http://mark.michaelis.net/Blog/SQLServer2008InstallNightmare.aspx

srijeda, 8. srpnja 2009.

Building dynamic CAML Query with InfoPath

The problem:

InfoPath form - query data from Sharepoint Lists

The Solution(s):

  • use Sharepoint designer blah...
  • use Sql temporary database (very hard to sync)
  • use Infopath Datasource option blah...
More to come soon...

subota, 14. ožujka 2009.

Script Defering in ASP NET MVC - Fast page Loading

For an about one year I am using an excelent code to defer all scripts to the very end of page. It is done with ASP NET response filters. An what about ASP NET MVC. Download code from Fast ASP.NET Web page loading by downloading multiple JavaScripts after visible content and in batch , create base controller and add code :
 protected override void OnActionExecuting(ActionExecutingContext filterContext)
        {
            Response.Filter = new AdriaticGlobal.MVC.Utilty.ScriptDeferFilter(Response);
            base.OnActionExecuting(filterContext);
        }
You can see working examples here: ASP NET AdriaticGlobal.net ASP NET MVC dubrovnik-accommodation.biz

subota, 7. ožujka 2009.