CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: dmeikle

Page 1 of 12 1 2 3 4

Search: Search took 0.16 seconds.

  1. Replies
    1
    Views
    5,432

    PHP Are these interview questions too difficult?

    Hi Folks,

    I'm interviewing candidates for a senior PHP developer position. I'm asking questions based upon my expectation of what a SENIOR developer should have an understanding in - I don't care...
  2. Replies
    1
    Views
    4,461

    PHP Re: can not get script to connect to database

    $conn = mysql_connect($dbHostAddress, $username, $password);

    if (!$conn) {
    die('Could not connect: ' . mysql_error());
    }

    mysql_select_db($databaseName);

    $results =...
  3. Replies
    1
    Views
    1,811

    PHP security for JSON RPC...?

    I've been reading online about security methods for RPC in PHP - I happen to be using JSON encoded strings. Most of the discussions people are talking about having the security check performed in...
  4. Replies
    0
    Views
    792

    RPC Handler - how to add another..?

    we've got an RPCXML server on a linux box receiving request from PHP pages being served through apache. I need to add a few new Handlers to it (I wrote the original server) and for some crazy reason...
  5. Replies
    0
    Views
    2,366

    Preferred Design Pattern...?

    Just wondering if anyone has a preferred design pattern for this basic task in a website:

    you have the following classes (pseudocode version):
    class Car{
    int carID ;
    String make;
    int...
  6. Replies
    5
    Views
    3,791

    Re: how to get user origion country from IP

    I find a great resource for things like this is to check out websites like zen cart that often have opensource plugins already developed and available. Check out how they did it then right the same...
  7. Replies
    0
    Views
    1,203

    programmatic button event...

    OK - so I'm using C# in ASP.net with AJAX (microsoft's AJAX).

    on my source page I have the following:


    <asp:UpdatePanel ID="UpdatePanel1" runat="server">
    <ContentTemplate>
    ...
  8. Replies
    3
    Views
    4,715

    Re: sql server full text index not completing

    well, it's exactly the same data. but indexing 4000 rows shouldn't take 3 days (before we stop the process)
  9. Replies
    3
    Views
    4,715

    sql server full text index not completing

    I'm trying to run a full text index from a catalog created. One one server (dev server) it executes (showing full text index in progress under status) then the status changes to idle when complete....
  10. Replies
    0
    Views
    617

    parse jpg from wordml?

    I need to parse MS word XML docs programatically. I've read that the images are base64 encoded, but when I base 64 decode them, I have corrupted image file errors when I try to view the extracted...
  11. Replies
    1
    Views
    2,249

    c++ Express Database Connection?

    I've been writing Java for years and most recently (2004) started working with C#. Now I'm trying to do some work in C++ but I'm having issues with where things are located...

    In C# if I need...
  12. Replies
    2
    Views
    971

    Re: web.config file

    web config is a great little place to store global parameters such as:
    database connection params
    admin email settings (smtp, admin email account...)
    where to log errors to
    even role based...
  13. Replies
    15
    Views
    9,632

    Re: GridView RowDeleting

    <asp:CheckBox id="chkBox" runat="server" checked="<%# Eval('doc_area_default') %>" />



    try



    <asp:CheckBox id="chkBox" runat="server" checked='<%# Eval("doc_area_default") %>'/>
  14. Replies
    15
    Views
    9,632

    Re: GridView RowDeleting

    sort of a hibrid of my own stuff mixed with the dot net:




    protected void deleteBookmarks(object sender, ImageClickEventArgs e)
    {
    DataKeyArray aryKeys =...
  15. Replies
    2
    Views
    2,245

    Re: PDF generation library for C#

    did you manage to get any of those to work for the net?
  16. Replies
    8
    Views
    8,806

    Re: what is used at Server side?

    Igor:

    CPUWizard:


    CPUwizard was answering his question in regards to 'is it some kind of server side language' and pointing out it is language independant on the server side. i don't doubt...
  17. Re: Showing content from database without page refresh

    are you using a 3rd party Ajax framework? there's some free ones out there that have provisions for that.

    if you want to hand-code the heck out of your own, here's what to do:

    send the...
  18. Replies
    1
    Views
    1,466

    Re: why is this XML not validating?

    this might not be an issue HERE, but check the fact that you're using single quotes instead of proper quotation marks in you XML file when you declare your namespace.
  19. Replies
    2
    Views
    2,351

    Re: Writing to a XML file using java

    can you post the section of your code that is appending the child node to the list?
  20. Replies
    8
    Views
    8,806

    Re: what is used at Server side?

    Bubu,

    I think you may have misread the post by CPUWizard. You're response has not proven him incorrect, you've merely mentioned that you used a client side script you wrote yourself (in...
  21. Replies
    2
    Views
    5,839

    Re: FileUpload and Ajax

    I'd heard it's not possible and read just yesterday that with Microsoft's Atlas/ Ajax Beta it's NOT possible, due to how the XMLHttpRequest object handles connections.
  22. Replies
    5
    Views
    2,156

    Re: How to append 2 wav file

    I've never tried that sort of thing, but have you tried messing around with simply reading the first file in as an array of bytes, writing it to a new file, then reading the 2nd file in as an array...
  23. Replies
    2
    Views
    1,623

    Re: How to host my web app in my computer?

    go into your tomcat config file and change the listening port from 8080 to just 80 (which is the default for browser requests).

    then change your dns to point to your IP address (helps to get a...
  24. Replies
    3
    Views
    1,074

    Re: redirect back to source page frma filter?

    well I thought of that, but I have a hashmap of values generated from the results of the criteria checking filter. If I change it to cookie based, I'd need to write a whole parse cookie section on...
  25. Replies
    3
    Views
    1,074

    redirect back to source page frma filter?

    trying to get a filter to redirect to the refering page if it doesn't pass certain criteria. if it needs to return to the referer, I add values to the request.attributes object.

    if I use...
Results 1 to 25 of 278
Page 1 of 12 1 2 3 4





Click Here to Expand Forum to Full Width

Featured