Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
S

Swab Jat

@Swab Jat
About
Posts
35
Topics
15
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • msbuild without Visual Studio: The type or namespace name 'xxx' does not exist in the namespace 'xxx'
    S Swab Jat

    hello there, a project gets built fine from Visual Studio without a problem from developers work station. Now we need to more it to DEV and UAT server. I've been struggling all day trying to get my ASP.NET project built with msbuild on a server with no Visual Studio installed (dev tools not permitted on servers) -

    The type or namespace name 'Optimization' does not exist in the namespace 'System.Web'
    The type or namespace name 'DotNetOpenAuth' could not be found

    Couple attemps were made 1: Install Windows SDK - appears there has been a lot of discussions from Stackoverflow (Related but not exactly)[^]. You'd also need to ddd to environment variables PATH C:\WINDOWS\Microsoft.NET\Framework64\v4.0.30319\ C:\Program Files (x86)\Microsoft SDKs\Windows\v8.0A\bin\NETFX 4.0 Tools (This did NOT help) 2: gacutil to install the dll's? (no vs command prompt - as said, no dev tool/Visual Studio permitted on server) 3: copy the dlls' to (i.e. same folder as MSBuild.exe): C:\WINDOWS\Microsoft.NET\Framework64\v4.0.30319\ (This did NOT help) 4: Copy local = true (This did NOT help - the dll's apparent msbuild can't find already in bin folder of the ASP.NET application) It appears to be a bug with msbuild[^] Anyone has experience with this?

    ASP.NET visual-studio help csharp asp-net com

  • Don’t believe anyone who tells you learning to code is easy
    S Swab Jat

    There are those with title "Learn C++ in 24 hrs"

    The Insider News learning com

  • Active Noise Cancellation - does it work?
    S Swab Jat

    What about Active Noise Cancellation Speakers (not Headphones), tried any of those?

    The Lounge java database com help tutorial

  • Active Noise Cancellation - does it work?
    S Swab Jat

    hello people, anyone tried one of those head phone, for example, these ones from Bose[^] with active noise cancellation? Does it work? I hear it's only good with steady background noises. If a baby scream all a sudden Active Noise Tech won't help much. But is this conclusion correct? 1. Active Noise technology good with steady waves forms 2. Active Noise technology not good with transient waves forms

    The Lounge java database com help tutorial

  • Top 10 Useless Interview Questions for Software Developers
    S Swab Jat

    Top 10 Useless Interview Questions for Software Developers - Brought to you by Clueless MBA, feat HR, engineered to filter out exactly those Experienced Candidates who can get the job done. http://tinyurl.com/pcv83c7 Send them to your HR department if you're hiring - make sure you filter out the good candidates.

    The Soapbox career com

  • Google Site - SMTP support? ASP.NET? Microsoft SQL server?
    S Swab Jat

    no.. "Google Site" is free hosting service (But apparently no server side scripting supported, and no SMTP)[^]

    ASP.NET database csharp html asp-net sql-server

  • Google Site - SMTP support? ASP.NET? Microsoft SQL server?
    S Swab Jat

    "Google Site" - I understand it's free, but: a. SMTP support? b. Can it host ASP.NET? I suspect you can only post static HTML page? c. Database support? What about database support? Microsoft SQL server? I read their page, doesn't seem there's any mention of SMTP[^] I doubt it's possible.[^] I don't think there's any server side scripting supported by Google Site: ""It is disturbing and unexpected that googlesites is not dynamic enough to allow other popular scripting and programming languages"[^] Thanks

    ASP.NET database csharp html asp-net sql-server

  • IHttpModule and Build Action = Compile? Or Content?
    S Swab Jat

    hello - this is a bit strange. I have a HttpModule, if I set Build Action to Content, everything works. I can hit F5 on Visual Studio and even step every line of code with Debugger. If I set Build Action to Compile, I simply get a http error 500?! I think I'm not the only one who runs into this problem: http://forums.asp.net/t/1923829.aspx?HttpModule+for+QueryString+Encryption+is+not+working+in+Webserver[^]

    ASP.NET csharp help asp-net visual-studio security

  • Your bank will pay Microsoft to keep running its ATMs
    S Swab Jat

    That's good is it? After all Developers need get paid. Banks pay M$, and M$ pays us. What's problem with that? Banks has no choice but pay their landlords as well, what's wrong with paying rent?

    The Insider News com

  • Why an internet 'bill of rights' will never work, and what's more important
    S Swab Jat

    Any laws requires enforcers. Next thing you know is a lot of "monitoring", "moderation" in name of "protection".

    The Insider News com

  • Razor - render to "js" files as supposed to "cshtml"?
    S Swab Jat

    hello... can I render to "js" (Javascript) files as supposed to "cshtml"? For example, function GetCategories() { var sCategories; var i; i = 0; @foreach (var Category in Categories) { if(i>0) { sCategories.concat(','); } sCategories.concat(Category); i++; } return sCategories; } Thanks

    Web Development javascript asp-net tutorial question

  • A hardware platform for developers
    S Swab Jat

    Raspberry Pi really so hard? Been years I didn't do anything with hardware.

    The Insider News hardware javascript design iot help

  • MVC4 Razor @model - what's equivalent in ASPX view engine?
    S Swab Jat

    no worries Thatraja, thanks for your help!

    ASP.NET html asp-net tutorial question

  • MVC4 Razor @model - what's equivalent in ASPX view engine?
    S Swab Jat

    Thankyou Thatraja! Question, with ASPX you declare your "Model" as such: <% Inherits="IList" %> Do you still use "Model" keyword when enumerating items from server side script, from "foreach"?

    <%foreach (var Product in Model) { %>* <%=Product.Price%>
    <%} %>

    ASP.NET html asp-net tutorial question

  • MVC4 Razor @model - what's equivalent in ASPX view engine?
    S Swab Jat

    hi MVC4 Razor @model - what's equivalent in ASPX view engine? Here's how it's done with Razor - how to do the same in ASPX? @model IEnumerable @{ ViewBag.Title = "Downloads"; Layout = "~/Views/Shared/_Layout.cshtml"; }

    @foreach (var Package in Model) { }

    Name

    Description

    @Html.DisplayFor(modelItem => Package.Name)

    @Html.DisplayFor(modelItem => Package.Description)

    @Html.ActionLink("Download", "ProductDownload", Package)

    ASP.NET html asp-net tutorial question

  • ASP.NET MVC4 MembershipProvider
    S Swab Jat

    hello, I'm basically following steps as described here[^], building a new MVC4 app with my custom MembershipProvider extending from "WebMatrix.WebData.SimpleMembershipProvider". Question is, what if I don't want to persists my users in database at all? With SimpleMembershipProvider, you must call "WebSecurity.InitializeDatabaseConnection" from "InitializeSimpleMembershipAttribute \ LazyInitializer.EnsureInitialized" at least once during startup. Thank you!

    ASP.NET asp-net question csharp database architecture

  • SCRUM Pit
    S Swab Jat

    indeed! Board meeting typically guys sit down with glass of Whisky in hand and they don't typically talk about what they accomplished on daily basis!

    The Lounge business sales collaboration question learning

  • SCRUM Pit
    S Swab Jat

    You know you've moved up the ladder when you don't need attend one of those scum meetings (And having be Agile+Standup) ... you ever see a board member be Agile? They aren't. Because management only give instructions. Only foot soldiers need be agile and having to report what they done & failed everyday, in a SCUM meeting!

    The Lounge business sales collaboration question learning

  • Little Johnny in trouble agian
    S Swab Jat

    if you want me anyone read it you should keep your shit to 2 lines silly bye

    The Soapbox question

  • Little Johnny in trouble agian
    S Swab Jat

    you're confused, fight is assult and is criminal. hypocrites will however advocate Proper manner, etiquette, no having sex before 18, typically confuses religion with education. You remind me of Philomena and the nuns (Sean Ross Abbey in Roscrea in Ireland)[^] You should send your kid there, your kid may not like it, but seems suits you very well. Yes, I'd like my kid to swear, nudes photo are fine and also sex before 18 so long they don't get pregnant :)

    The Soapbox question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups