Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
2
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
~11.4K People Reached
About Me

I like to meet new people ^_^

Interests
IT, manga, beekeping
Favorite Tags
Member Avatar for grafic.web

Hi everybody!! I'm starting with asp.net and i would like to try my code online.. can you advise me some free hosting for asp.net with the possibility to use sql server? Thanks

Member Avatar for smith.james.355744
0
634
Member Avatar for grafic.web

Hi, is more than a week that i try to resolve this error on my app but i can't... The problem is the following : I have a menu and submenu table and i show this records in this mageMenu.chstml (list of menus and submenus to generate the menubar of …

0
184
Member Avatar for grafic.web

Hi, i would love to put the tag <span></span> inside my link, this is my link : @Html.RouteLink(menu.MenuName, "MagazineRoute", new { controller = "Magazine", menuid = menu.MenuId, menuname = menu.MenuName }) and this is how it should be : <a href='#'><span>Link text</span></a> I have to put the span tag inside …

0
131
Member Avatar for grafic.web

Hi there, ho can i check in MVC if the users of my website are coming from my domain .it , .fr or .co.uk etc? Thanks

Member Avatar for Ajay Gokhale
0
98
Member Avatar for grafic.web

Hi, i created a Menu controller and inside my views folder i create a page Menu.cshtml with the list of my menus and submenus, now, i would love to show this page in my _Layout.cshtml, this is the code : @model IEnumerable<Menu3.Models.Menu> <!-- If the Model isn't null --> @if …

0
166
Member Avatar for grafic.web

Hi there!! I would like to know if is possible to have routing in a website made with classic asp... In stead of showing this web address : www.website.com/mypage.asp?id=1 i would love to show this one (like MVC): www.website.com/mypage/1 Is it possbile? Thanks to all

Member Avatar for vsmash
0
2K
Member Avatar for grafic.web

Hi, i finally done my flag where i can choose the culture of my site, the problem now is the following : i have my table with ID , BODY, BODY_IT, BODY_FR, BODY_SP for example, when i click on the french flag my culture is = fr in this case, …

0
234
Member Avatar for grafic.web

Hi, i was wondering how is working with MVC to put my website on the webserver!! I mean, my fear is about the database... if i make some change on my code and i wnat to put the project on the server, will i lose my data on the database …

Member Avatar for JorgeM
0
207
Member Avatar for grafic.web

Hi, i did create the following class in my Models folder and i create the Styles controller, everuthing is fine... but muy problem is the following. When i clicK on the link style i got my list of styles and when i click in one style i got the idin …

0
109
Member Avatar for grafic.web
Member Avatar for grafic.web
0
485
Member Avatar for grafic.web

I am learning MVC and i would love to do my web site with different languages... if the site come from my domain mysite.fr i wanna show french, if comes from mysite.it i wanna show italian.. etc etc So, i did all what the e tutorial asked me to do …

Member Avatar for grafic.web
0
457
Member Avatar for grafic.web

O would like to understand how to manage my website with Multilingual option for exapmple if the user is cominf form the domain .fr or .it or co.uk ect... how can i do this??? Thanks a lot for your help

0
161
Member Avatar for grafic.web

Hi, i woul like to get the following routing example in MVC : mysite . com /NAME/NAMECATEGORY/ID i have a list of items in name and each item has a category... when i choose and item i would like to show the category as well and not only the id …

0
122
Member Avatar for grafic.web

Hi, how can i apply a simple text editor to my textbox "SUBTITLE" and a full text editor to my textbox "BODY" in MVC? Thanks

Member Avatar for pritaeas
0
137
Member Avatar for grafic.web

HI, ho can i do a select list from my table with MVC? Example database = mydatabase table = styles ID NOM show my select <selct name=aaaaa> <option value=ID>NOM</option> Thanks

0
99
Member Avatar for grafic.web

Hi there, i just copy the css of the YETY layout and everything works fine but i have a proble to apply the dropdown menu on my MVC link.... i have the following link : @Html.ActionLink("Collection Hair", "Index", "Styles", null, new { @class = "navbar-brand" }) and i would love …

0
108
Member Avatar for grafic.web

Hi, i am looking for a full tutorial for MVC4!!! I need a complete tutorial where i can manage user registration and one list of articles with relative reviews!! Can anybody help me with this??? If you can tell me some links where i can find something like this (because …

Member Avatar for grafic.web
0
175
Member Avatar for grafic.web

Hi there, Once i done my project whit MVC how should i make it working on line? I mean, i would love to put on line via FTP but the project seems too big for this... which filese shoult i upload? and how?? Thanks

Member Avatar for JorgeM
0
164
Member Avatar for grafic.web

Hi there, i woul love to make a table whitout using the TABLE tag but the DIV... For Example the same one with div: <table id="body" cellpadding="0"> <tr style="height: 30px"> <td> TEXT </td> <td> TEXT </td> <td> TEXT </td> </tr> <tr style="height: 30px"> <td> TEXT </td> <td> TEXT </td> <td> …

Member Avatar for grafic.web
0
251
Member Avatar for grafic.web

Hi there, i need hel whit this one : i'm learning how to develop MVC but evry time that i wand to create a data base whit visual studio express 2013 i get the classic connection to DefaultConnection : Data Source=(LocalDb)\v11.0;AttachDbFilename=C:\FRANCESCO\Project\OdeToFood\OdeToFood\OdeToFood\App_Data\OdeToFoodDb.mdf;Initial Catalog=OdeToFoodDb;Integrated Security=True Ho can i set as a connection …

Member Avatar for JorgeM
0
176
Member Avatar for grafic.web
0
194
Member Avatar for grafic.web

I need to add un hour to my date, how can i do??? This my code CASE WHEN candidat_rendezvous_date IS NOT NULL THEN 'candidat_rendezvous_date + 1Hour' END Thanks for your help

Member Avatar for grafic.web
0
157
Member Avatar for dstoltz

I ask myself this often - I've been using it for well over a decade, and still use ASP to build most of my sites - why? I consider it rock solid, mature, and something I'm very confortable with. And although I don't see support for it going away, I'm …

Member Avatar for JorgeM
0
245
Member Avatar for grafic.web

Hi there, this is the code of my contactcontroller.cs : using ContactMvc.Models; using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; namespace ContactMvc.Controllers { public class ContactController : Controller { // // GET: /Contact/ [HttpGet] public ActionResult Index() { return View(new ContactMessage()); } [HttpPost] [ValidateAntiForgeryToken] public ActionResult Index(ContactMessage post) …

0
158
Member Avatar for grafic.web

Hi there, what the best way to add a layout, simply to manage, to my web site asp.net? Are masterpages the best solution? Can i get some example of simple editable layout? Thanks for you help

Member Avatar for harsh9
0
358
Member Avatar for grafic.web

Hi there, in am new with Webmatrix and Visual studio 2013 and i would like to create the following : (for all user of the website) 1) a classic form contact in asp.net razor : email name subject message If is possible this message wil send an aoutomatic mail to …

Member Avatar for grafic.web
0
565
Member Avatar for grafic.web

Hi, i applyed an CalendarExtender to my text box, this is the code : <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title> </head> <body> <form id="form1" runat="server"> <div> <asp:ScriptManager ID="ScriptManager1" runat="server"> </asp:ScriptManager> <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox> <asp:CalendarExtender ID="TextBox1_CalendarExtender" runat="server" Enabled="True" TargetControlID="TextBox1"> </asp:CalendarExtender> </div> </form> </body> </html> but when i run it, i get this …

Member Avatar for grafic.web
0
739
Member Avatar for grafic.web

Hi there, my simple page in asp.net with ajax does not work... and i don't understand why... I have a button where i applied an ConfirmButtonExtender I have a textbox where i applied an calendarextender but if i run the page this simple ajax does not work... I guess i …

Member Avatar for BMXDad
0
254
Member Avatar for grafic.web

Hi, i am new in asp.net and i found it quiet difficult... i was programming in classic asp and sql server, but asp.net looks quiet different, specially if i do program in C# .... Than i hase a couple of questions : 1) if i do a form with 2 …

Member Avatar for grafic.web
0
365
Member Avatar for grafic.web

Hi there, this is my question : I would like to make te first page with a list coming from database (how to do?); Ex <p><a "href:secondpage.aspx">Record text</a</p> etc. etc. and from this list choosing one of the record, using the id of the record, and open the second page …

Member Avatar for JorgeM
0
329