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.

objective c - How to add an image as html and load it to webview in iPhone sdk? -


i implementing webview based application, in tried load image not coming expected. don't know problem. following code tried. please suggest me if did thing wrong.

  nsstring *returnstring = @"";  returnstring = [returnstring stringbyreplacingoccurrencesofstring:@"<html><body>" withstring:@"<body> <p>hello sekhar"]; returnstring = [returnstring stringbyappendingstring:@"<img src='tutorial/images/bg1.png'"];    returnstring = [returnstring stringbyappendingstring:@"alt='footer'"]; returnstring = [returnstring stringbyappendingstring:@"align='middle' width='140' height='32' />"]; returnstring = [returnstring stringbyappendingstring:@"</p></body></html>"]; [mywebview loadhtmlstring:returnstring baseurl:[nsurl urlwithstring:@"http:www.google.com"]]; 

    nsstring *bundlepath = [[nsbundle mainbundle] bundlepath];     nsurl *bundlebaseurl = [nsurl fileurlwithpath: bundlepath];      nslog(@"webview %@", bundlepath);       nsstring *filepath = [[nsbundle mainbundle] pathforresource:@"index" oftype:@"html"];       nsdata *htmldata = [nsdata datawithcontentsoffile:filepath];       nsstring * html =  [nsstring stringwithcontentsoffile:filepath encoding:nsstringencodingconversionallowlossy error:nil];     if (htmldata) {          [webview loaddata:htmldata mimetype:@"text/html" textencodingname:@"utf-8" baseurl:bundlebaseurl];       } 

used search function once: load-image-in-web-view-from-a-html-file


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 -