- Upvotes Received
- 2
- Posts with Upvotes
- 2
- Upvoting Members
- 2
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
I like to meet new people ^_^
- Interests
- IT, manga, beekeping
42 Posted Topics
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 | |
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 … | |
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 … | |
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 | |
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 … | |
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 | |
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, … | |
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 … | |
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 … | |
Hi there, i'm looking for the easiest image slider banner for my homepage, any suggest? Thanks!! | |
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 … | |
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 | |
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 … | |
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 | |
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 | |
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 … | |
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 … | |
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 | |
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> … | |
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 … | |
Hi there, I'm looking for a free layout to use with MVC visual express 2013 thanks | |
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 | |
Re: This is a good question... me to i have the some problem and i don't konw how to turn... at the end i'm learning MVC... razor is a powerfull technology and i advise you to go for it cause you can make views vary fast and you got plenty of … | |
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) … | |
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 | |
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 … | |
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 … | |
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 … | |
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 … | |
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 … | |
Hi there, i tryed to use the authentication with forms... I only added this code to my web.config but that give me an error.. ** <authentication mode="Forms"> <forms name=".myCookieSuffix" loginurl="Login.aspx"/> </authentication> ** do i need to add some more code or something else to my website? Another question, ho can … | |
Hi there, Once i am on my second page where i have open the record from the database with my id record, how can i populate my textboxes with the values of my record? And ho can i populate a select with another table containig the type of user by … | |
Hi there, i am new with asp.net and i would like to start with it!!! I was wondering if anyone could suggest me any good and easy to understand tutorial where i can learn how to make a list from sql and edit the record in a new page (add, … | |
Hi there i woul like to pass my variable "testiframe" from javascript to asp, hw can i do??? Thi is the code : <script type="text/javascript"> if (location.href != top.location.href) { testiframe="ok" } else { testiframe="ko" } </script> | |
Hi there, i would like to create one page asp where i have 2 text fields and i can fill them with a name of city from where i wonna start to where i wanna arrive and calculate the number of km and the nearest cites Example : Text1 = … | |
Hi there, i need help to : How to pass variable ASP to JavaScript ? Example: myvar = "textvarable" i would like to get it from a form without refreshing the browser, if is possible with AJAX Thanks!!! | |
Ho there, i have windows 7 Family edition premium on my pc and i installed IIS i created one website and now i would like to host my websites on my PC tha everybody can see it. I heard that IIS allow you to host only one website.. and that … | |
Hi there, can you explain to me in the easiest way what is an Architecture n-tier ??? And how to apply to a ASP.NET page or project, whit an example of code if is possible. Thanks a lot for your help!! | |
Hi there, i would like to know how to get the first letter of all the word in a string. If i have a string mystring="Name Surname" i would like to get only the fist letter of each words and the results will be N S Anybody could help with … | |
Hi there, i have a internet connection with a freebox server who has a static ip address. I would like to use my laptop as a web server to host my sites in ASP language or ASP.NET and see them on the web, my OS is windows 7, which program … | |
Hi there, i got stuck with this problem!!! I have 2 drop down list, the first one come from the table "categorie" and till here no problem, the proble is that i would like to generate the second drop down list , which come from the table "subcategorie" beacause of … | |
Hi there, i would like to generate a kind of slideshow that will change photo every 10 seconds, with the photos that are site in my folder = "/diaporama" i have all the name of my photos in a database and the name of the table is "photodiap" and the … |
The End.