Entries:
Comments:
Posts:

Loading User Information from Channel 9

Something went wrong getting user information from Channel 9

Latest Achievement:

Loading User Information from MSDN

Something went wrong getting user information from MSDN

Visual Studio Achievements

Latest Achievement:

Loading Visual Studio Achievements

Something went wrong getting the Visual Studio Achievements

Discussions

Cybermagellan Cybermagell​an Live for nothing, or die for everything
  • Simple Question ASP.NET mvc3 (Razor)

    Well, I took the better option of removing the spaces (Apparently I have more control over the data then I previously had thought). However I'm having an issue trying to parameterize the data...

    @CODE
          Dim qfilter = Request.Form("qfilter").ToString
          Dim q = Request.Form("q").ToString
          Dim db = Database.Open("myConnectionString")
          Dim selectQuery = "SELECT * FROM table_name WHERE @0 = @1"
          For Each row in db.Query(selectQuery,qfilter,q)
              'Code to show results
          Next
    END CODE

    However I'm not getting any results back....when I output the variables I'm getting the @0 and @1 the way they should be (Payroll and 7748 respectively), however inside the page nothing else is happening.

    Ideas?

  • Simple Question ASP.NET mvc3 (Razor)

    At night I'm working in MySQL and days now my job is to convert Access to SQL Server and build some webapps around them, so please forgive me for the simpleness of this.

    I have a connection to a remote server that has a table with some data (all imported). However the column names have spaces in them. So when I perform my query...

    @For Each row in db.Query(QueryString)

    Next

    I'm trying to create a row in a table using @:<tr><td>@row.x</td></tr>, however it's failing when x has a space in it. Additionally I tried @row.[x] and it still fails. Any ideas? Or a article/page that can point me in the right direction?

    Thanks.

  • NFC with .NET

    I'm looking for any documentation/API/Videos on using NFC Technology with VB.NET or C#.NET. I'm seeing pretty low level articles, but nothing higher.... any ideas?

  • How to: ASP.NET user controls?

    I'm trying to move my team from using regular ASP.NET controls over to using HTML5 related controls however (for some reason), they're in love with actually using the toolbox controls.

    Is there any idiots guide to writing toolbox controls (user controls)? From within VB? If needed I'll write the HTML5 elements as controls for my team... thanks.

  • How to hide or make a vb.net form invisible at the load event of the form

    Why would you want to do this?

    This tactic sounds more like spyware/virus than any feasible reason....but hmm

  • SmartCard APIs?

    Not knowing the vendor yet, how is it Microsoft doesn't have any APIs or interfaces for SmartCards? Figure this would be the first thing that when they were coming out MSFT would've made available....

    I've found different articles on writing classes to use myself but how's this not baked in yet?

  • IIS7.5 Website ​Configurati​on

    yeah, ours isn't. It's throwing that compilerVersion error which we just keep going down a rabbit hole on issues

  • IIS7.5 Website ​Configurati​on

    I found this site...

    http://www.aspspider.com/qa/Question4562.aspx

     

    Which talks about taking parts out of the web.config.... wha? Why?

  • IIS7.5 Website ​Configurati​on

    The hard part is we want to keep 2.0 apps in a 2.0 appPool and 4.0 apps in a 4.0 appPool. Is this something that broke/changed since IIS6 (or even 7.0?) We have multiple sites that are ran kinda mixed like that, but 7.5 (Win Serv 2008 R2) is being a pain.

  • IIS7.5 Website ​Configurati​on

    No, the app pool for the site is 2.0....