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.

url rewriting - Making Clean URLs in this situation -


this question hard search don't know keywords use, altho ive tried still cant find answer.

i have database driven website: www.abc.com , every page this

 www.abc.com/?page=somepage  www.abc.com/?page=another_page  www.abc.com/?page=yet_another_page 

i use index.php read value of "?page" , load required page according value of "?page"

since "?page" common how can simplify urls like

www.abc.com/somepage  www.abc.com/another_page www.abc.com/yet_another_page 

thanks

edited

on further thinking, want bit more specific it... problem is...

how make in way when address www.abc.com/somepage typed in address bar, should process address if www.abc.com/?page=somepage , not go direct /somepage if folder

try :

 # rewrite urls of form 'x' form 'index.php?q=x'.   rewritecond %{request_filename} !-f   rewritecond %{request_filename} !-d   rewritecond %{request_uri} !=/favicon.ico   rewriterule ^(.*)$ index.php?page=$1 [l,qsa] 

code drupal .htaccess (i replaced q page)


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 -