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.

Sharepoint change Content Type in Sharepoint Designer using workflow -


i trying change document content type. must use workflow, , best way workflow create in sharepoint desingner. know how programatical in visual studio

i know old question, figured out:

you can using spd workflow (spd 2007 or 2010). can call content type field in 2 ways:

  1. in workflow, use "if [field] equals [value]" or "set [field] [value]"

  2. for "if" statement, field called "content type". "set" statement field called "content type id". in either case can assign value based on available content types.

you need enable content types on list or library settings. here's example workflow based on custom list record accounts payable entries:

list column: request type (choice column choices of reimbursement, department expense, other)

list content types: default, accounts payable, accounts receivable

if [request type] equals [reimbursement] set [content type id] [accounts payable] 

when workflow fires, set content type accounts payable if request type column equal reimbursement.


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 -