Featured post

c# - Usage of Server Side Controls in MVC Frame work -

i using asp.net 4.0 , mvc 2.0 web application. project requiremrnt have use server side control in application not possibl in noraml case. ideally want use adrotator control , datalist control. i saw few samples , references in codepleax mvc controllib howwver found less useful. can tell how utilize theese controls in asp.net application along mvc. note: please provide functionalities related adrotator , datalist controls not equivalent functionalities thanks in advace. mvc pages not use normal .net solution makes use of normal .net components impossible. a normal .net page use event driven solution call different methods service side mvc use actions , view completly different way handle things. also, mvc not use viewstate normal .net controlls require. found article discussing mixing of normal .net , mvc.

c# - How do i architect automatic update of my clients -


i have distributed application written in c# (4.0). has become substantial task update clients each time create new release. not want go clickonce way, since organisations has bought software in cases not wish upgrade clients.

how build such update mechanism, clients? thoughts implement kind of launcher application checks server newest version, updates if required, , starts new one. if no updates available simple starts client application. see problem of updating launcher application, should client 1 responsible this?

how solve in proper , robust way, ensures customer can configurate clients updates or not, , allow clients function autonomically? is, without user supervision.

cheers,

create separated multi tier application. add business logic in classlibrary. add library reference application. afterwards create checkfunction in ui. (e.g. check version "number" calling webservice)

in case remote version > localversion download new dll (register in gac if necessary) , demand restart of application.

if ui logic has changed too, download complete new setup file (with removeolder version = true) , demand user start or call process.start on closed..

just few ideas on topic - hope might help


Comments

Popular posts from this blog

c# - Usage of Server Side Controls in MVC Frame work -

cocoa - Nesting arrays into NSDictionary object (Objective-C) -

ios - Very simple iPhone App crashes on UILabel settext -