razor or logitech Hardware and Software Hardware by iceo i am planning to buy a gaming mouse and i am stuck between the Logitech™ MX518 Gaming-Grade™ Optical Mouse and its razor equivalent.which do you guys think is better. Re: razor or logitech Hardware and Software Hardware by BullHorn I have a Logitech 510MX, it's pretty much like the 518MX. I never had any problems with it and it rules for gaming. I never tried a Razor so I can't give you any feedback about it. Re: Razor MVC Binding Problem - only 1st item in list binds Programming Web Development by LastMitch >Razor MVC Binding Problem - only 1st item in list binds I … Microsoft WebMatrix with Razor Programming Web Development by jeffcogswell …a programmer's perspective. One is a technology called Razor, which is a new markup language that basically …at times even for developers with years of experience. Razor is a completely different way of doing markup compared…way into Microsoft web programming, most likely starting with Razor. And further, a great deal of the system really… Re: Microsoft WebMatrix with Razor Programming Web Development by masterjiraya … to add a new forum list under web development called RAZOR/CSHTML/C# HTML I'm not after the cons of… after the release of visual F#, so CSTHML or called RAZOR was released with .NET 4.0 meaning to say the… Actual difference between or meaning of ASP.NET code & Razor Code Programming Web Development by Jigs28 Hi, I am confused between razor and asp.net coding. Asp.net code itself is a server side code so why it is said that razor code is server side embedding code for creating dynamic web pages? Normal asp.net code also runs at server side so what is the need for razor than? Re: Actual difference between or meaning of ASP.NET code & Razor Code Programming Web Development by internet_red … coding a windows application. The 'Raxor code' is actually a Razor view engine - which was introduced with MVC 3 (Model-View…-Controller). The Razor engine takes code from the server and renders clean HTML… Re: ASP.NET MVC 3 RAZOR ILIST Programming Web Development by LastMitch >How can i add this to my Create View Razor? I will be honest with you that's not much to work on. Take a look at this code: http://saeidp.wordpress.com/2010/11/18/mvc-simple-razor-view-engine/ and this tutorial: http://www.rachelappel.com/razor/introducing-mvc-development-w-the-razor-view-engine-for-visual-studio-developers/ ASP.net Razor Webpages Response.Redirect Programming Web Development by CriticalError Hi i am building a website using ASP.net Razor Syntax (webapges) I am using C# and can't get … ASP.NET MVC 3 RAZOR ILIST Programming Web Development by ryan311 public IList<Labour> Labours { get; set; } public class Labour { public string WorkDates { get; set; } public string WorkHour { get; set; } } I have this code above on my class. How can i add this to my Create View Razor? can anyone tell me please. Also how i can add another Labour in running time. Code sample for a Contact form ASP.NET with Razor (Webmatrix or VS2013 MVC) Programming Web Development by grafic.web … the website) 1) a classic form contact in asp.net razor : email name subject message If is possible this message wil… Re: razor or logitech Hardware and Software Hardware by BeastOverlordH6 The Razer Diamondback is really its Logitech counterpart with some extra features including something to keep the laser constantly active, an additional 400dpi resolution ability, and some sides with better traction to improve your grip. It's also $10 more. If you don't mind the extra $10, nab the Razer. Re: razor or logitech Hardware and Software Hardware by scottclby i have a razer and i like it a hole lot :evil: :cool: Re: razor or logitech Hardware and Software Hardware by scottclby i have a serial mouse pord but it dosent work ive changed the plugs but it still wont work :( please help it has win me Re: "Value cannot be null. Parameter name: items" MVC 3 RAZOR Programming Web Development by LastMitch >I use C# MVC 3 RAZOR VIEW ENGINE. I can tell you I might not know … in **C#**): http://www.waynehaffenden.com/Blog/ASPNET-MVC-3-Razor-CSharp-View-Engine Did you create and define this: SiteId… Re: "Value cannot be null. Parameter name: items" MVC 3 RAZOR Programming Web Development by ryan311 Hi Mitch, I use C# MVC 3 RAZOR VIEW ENGINE. Razor MVC Binding Problem - only 1st item in list binds Programming Web Development by john.gale.92102 The model is not overly complex. It has a list of items each of which is generated in its own form with its own submit button. Each submit button has its onw id. The first form returns what I need. When I view the results from the form, if I have selected the first record, I get a single item in eqDetails containing the information from the form.… Re: Razor MVC Binding Problem - only 1st item in list binds Programming Web Development by john.gale.92102 It just never occured to me. Yes it is easier. That would not affect binding though; would it? Re: Razor MVC Binding Problem - only 1st item in list binds Programming Web Development by LastMitch >That would not affect binding though; would it? Did you ran the code? If it doesn't bind for **2nd item** then it has to do with the **@foreach** not looping. I don't think you didn't post that part regarding about your list. It werid that you can get the 1st item not the second. I'm not familiar with **VB** code mixing with **ASP.net**. But… Razor Flow Charting Help Programming Software Development by fabzster Hi I am using razorflow chart software to create a dashboard, this works perfectly on my dev server(Locally) but when I upload it to hosted server(Web) it does not load properly. https://www.razorflow.com/ I get the following errors: value is not a number Uncaught TypeError: Cannot read property 'split' of undefined value is not a number … Re: ASP.NET MVC 3 RAZOR ILIST Programming Web Development by ryan311 Hi mich thank you for your reply but this is not i'm looking for this one is displaying list of ILIST. What i want is Create new ILIST. Re: ASP.NET MVC 3 RAZOR ILIST Programming Web Development by LastMitch >What i want is Create new ILIST. You only did **3** lines of code? public class Labour { public string WorkDates { get; set; } public string WorkHour { get; set; } } Here is a simple code to start : public class LabourController : Controller{ [HttpGet] public ActionResult Index(){ … Re: ASP.NET MVC 3 RAZOR ILIST Programming Web Development by ryan311 Hi Mitch Thanks I'm trying to integrate your code to mine This is my ServiceDTO.cs public class ServiceDTO { public IList<LabourDTO> Labours { get; set; } } This is my LabourDTO.cs public class LabourDTO { public string WorkDate { get; set; } public string WorkTime { get; set; } } In my … Re: ASP.NET MVC 3 RAZOR ILIST Programming Web Development by LastMitch >Please check my attachment. That is my planning to do like Phonenumbers. If i click Add another labour another two textbox for labour. Please help i'm begging. What is the issue you are having? I'm not going to do your work. You have to explain to me what are you having problem with? Re: ASP.NET MVC 3 RAZOR ILIST Programming Web Development by ryan311 How can i add another TWO TEXTBOX. As you can see in my attachment if you click the Add Phone Number it will be add another Phone Number. How to do that? Re: ASP.NET MVC 3 RAZOR ILIST Programming Web Development by LastMitch You mean input box? **<textarea> tags** are different **<input> tags.** <input></input> <input></input> How long have you learn **ASP.net**? Re: ASP.NET MVC 3 RAZOR ILIST Programming Web Development by ryan311 @html.TextBoxFor(m => m.WorkDate) @html.TextBoxFor(m => m.WorkHour) This is one mitch. How long have you learn ASP.net? newbie :( i've started last month. So i'm still learning on it. Re: ASP.NET MVC 3 RAZOR ILIST Programming Web Development by LastMitch You can try this: @using (Html.BeginForm("SaveData","ControllerName", FormMethod.Post)) { @html.TextBoxFor(m => m.WorkDate) @html.TextBoxFor(m => m.WorkHour) <input type="submit" value="Save" /> } - [HttpPost] public ActionResult SaveData(… Re: ASP.NET MVC 3 RAZOR ILIST Programming Web Development by ryan311 Hi mitch how to add another @html.TextBoxFor(m => m.WorkDate) @html.TextBoxFor(m => m.WorkHour)? Re: ASP.NET MVC 3 RAZOR ILIST Programming Web Development by LastMitch >Hi mitch how to add another What are you talking about? Can you post what you have so far. I got no idea why you want another set of **TextBox**? I hope you understand you need a form which I gave you a code snippet with that already: @using (Html.BeginForm("SaveData","ControllerName", FormMethod.Post)) {…