Search:

Type: Posts; User: gep13

Page 1 of 13 1 2 3 4

Search: Search took 0.45 seconds.

  1. Replies
    1
    Views
    57

    Re: ASP.NET Presentation Layer, BLL, DAL

    Hello,

    Here are two very thorough walkthroughs on doing just this:

    http://imar.spaanjaars.com/416/building-layered-web-applications-with-microsoft-aspnet-20-part-1...
  2. Replies
    2
    Views
    259

    Re: Bind Textbox to Combobox in WPF (MVVM)

    Hello,

    Since I have been digging into this some more, I thought I would give this a try, and this is what I have come up with.

    First of all, rather than load directly from the XML file, I...
  3. Replies
    1
    Views
    48

    Re: ModalPopupExtender and TabContainer

    Are you able to share some of the code that you are using?

    Without it, it is going to be hard to help.

    I would suggest that you start from the beginning though. Don't immediately start putting...
  4. VS 2010 Re: how to use gridview like render = 'inline' property of updatepanel..?

    With regard to your question, I suspect that your Literal is getting "covered" by the GridView. If you check the view source for the rendered page, I suspect that it is there.

    If you want a...
  5. VS 2010 Re: how to use gridview like render = 'inline' property of updatepanel..?

    Hello,

    When you are posting code into the forum, can you please remember to surround it in
    or tags? It makes it a lot easier to read. I have done this for you in your above post.

    Gary
  6. Replies
    3
    Views
    84

    Re: Checkbox Disabled

    Hello dr223,

    The problem here is that you are doing multiple postbacks to the server, which is causing the state of the button to change.

    If the only thing that you are doing when the CheckBox...
  7. Replies
    7
    Views
    156

    VS 2008 Re: Navigating records next/previous

    Hey,

    I am not sure that passing in additional information in the query string is the best approach.

    I would suggest that John's approach is probably the best, unless you are looking to...
  8. Thread: File Permissions

    by gep13
    Replies
    2
    Views
    79

    Re: File Permissions

    Hey,

    Another approach would be to use an HttpHandler for any request for a particular file type. In the HttpHandler, you would then do the look up against "somewhere" to figure out whether or not...
  9. Replies
    3
    Views
    129

    Re: need help with regex

    Hey,

    For an online resource to help you with constructing the Regular Expression, be sure to check out this site:

    http://gskinner.com/RegExr/

    I use it all the time :)

    Gary
  10. Replies
    7
    Views
    156

    VS 2008 Re: Navigating records next/previous

    Ah, you are of course correct! :)

    Gary
  11. Replies
    7
    Views
    156

    VS 2008 Re: Navigating records next/previous

    Hey,

    Is it possible that you can show the URL that you pass into the details page?

    It might be as simple as looking at the id parameter that you pass in, and then constructing a new URL, in the...
  12. Thread: Page Formatting

    by gep13
    Replies
    11
    Views
    329

    VS 2010 Re: Page Formatting

    Hey yolandre,

    Thanks for the info. I will definitely keep an eye out for these problems, one of our internal products is moving to support IE10, so we may start to run into some of these issues....
  13. Replies
    6
    Views
    214

    Re: Include files within an Include file.

    For what it is worth, I would have to agree with Sapator. From what you have described, it would be best to start using the concept of MasterPages, that can then have various areas of a page,...
  14. VS 2012 Re: Dynamically generated CompareValidator not working right.

    Ok, so as per the article that I linked to, that is not early enough in the ASP.Net Page Life Cycle. You will have to alter your code as per the article.

    Gary
  15. Replies
    4
    Views
    331

    VS 2008 Re: Pagination sample, somebody can help me??

    Can you be a little bit more specific? What exactly isn't working?



    Should would replace it with the routed url.

    i.e. you said you wanted your URL to be pretty, so you would want to...
  16. Thread: highlight tags

    by gep13
    Replies
    4
    Views
    379

    Re: highlight tags

    Gotcha.
  17. Thread: highlight tags

    by gep13
    Replies
    4
    Views
    379

    Re: highlight tags

    Does this help:

    http://www.vbforums.com/misc.php?do=bbcode

    Gary
  18. Replies
    8
    Views
    347

    Re: Would WPF serve this need?

    Not a problem at all! Hope you get it all sorted out!

    Tell me about it! It is hard trying to keep up with it all!

    Gary
  19. Replies
    8
    Views
    347

    Re: Would WPF serve this need?

    Visual Studio 2010 also has a XAML editor, yes, but I think it would be fair to say that it is not as "polished" as the Editor in Visual Studio 2012. Still perfectly functional for what you would...
  20. Replies
    8
    Views
    347

    Re: Would WPF serve this need?

    Hey,

    You don't have to be doing a database application in order to use the MVVM pattern. In your case the model would simply be the entities, or POCO's that you are getting back from the service....
  21. Replies
    6
    Views
    325

    VS 2012 Re: it is a namespace but is used like a type

    Is it possible for you to post the class that you are using?
  22. Replies
    8
    Views
    347

    Re: Would WPF serve this need?

    Hello,

    Yes, you can essentially "port" an existing Windows Form application, driven by click events, and callbacks, into a WPF application. The User Interface is obviously far different, using...
  23. Replies
    6
    Views
    325

    VS 2012 Re: it is a namespace but is used like a type

    Hey,

    Is Opensession defined as a method on the Helper Class which lives within the DEntity namespace?

    If so, is this method a static method? Do you first have to create an instance of the...
  24. VS 2012 Re: Dynamically generated CompareValidator not working right.

    Hey,

    Which page level events are you doing this work in though?

    Is it possible to upload the entire aspx and aspx.vb files?

    If not, can you put it together in a small sample application and...
  25. VS 2012 Re: Dynamically generated CompareValidator not working right.

    Hello,

    Is it possible to show the code that you are using? It sounds like the controls that you are creating don't have their event handlers hooked up at the right point, therefore when the...
  26. Replies
    4
    Views
    331

    VS 2008 Re: Pagination sample, somebody can help me??

    Hey,

    Out of interest which sample are you doing?

    Based on the query string format that you are using, I would have thought that you needed something like this:
    ...
  27. Replies
    2
    Views
    96

    Re: Problem with deployment

    Hello,

    I have moved your question to it's own thread.

    Thanks for the report dilettante!

    Gary
  28. Replies
    3
    Views
    270

    VS 2008 Re: How to assign DataRow to variable in grid?

    Oh! That sounds like a severe limitation of the control!

    The GridView is a very powerful control though, and most times, with a bit of work, you can bend it to your way of thinking :)

    Gary
  29. Replies
    3
    Views
    270

    VS 2008 Re: How to assign DataRow to variable in grid?

    Hey,

    One "Standard" way of doing this would be to assign the Tag of the button that you are clicking on to the Index value for the row that is being bound to. This can either be done in the ASPX...
  30. Replies
    5
    Views
    186

    Re: buggy again at times toolbars

    When you see this happen, are there any JavaScript errors on the page?

    Are you running any addon's within Firefox?

    Gary
  31. Thread: Slow

    by gep13
    Replies
    5
    Views
    156

    Re: Slow

    Hey,

    I have just started using the forums just now today, and they seem fine to me.

    Gary
  32. Re: How to Recover Partial Project for VSB Express

    Hey,

    Check the link in my signature, it explains how to mark a thread as resolved :)

    Gary
  33. Thread: Page Formatting

    by gep13
    Replies
    11
    Views
    329

    VS 2010 Re: Page Formatting

    Just out of curiousity, have you updated to the latest jQuery?
  34. VS 2010 Re: [RESOLVED] Question about localhost:nnnn vs localhost

    Yeah, I read all that after I had read and responded to post #44, before reading post #45. I should have gone back and edited it :)
  35. Re: How to Recover Partial Project for VSB Express

    Hello rlsj,

    Welcome to the forums!

    I am going to move your question to the General Developer Forum, as I suspect that this is the best place to get an answer to your question.

    Gary
  36. Thread: Page Formatting

    by gep13
    Replies
    11
    Views
    329

    VS 2010 Re: Page Formatting

    What sort of problems are you seeing? Although not directly developing against it yet, I use IE10 on my desktop machine at work and at home, and I can honestly say that I haven't seen any notable...
  37. VS 2010 Re: Question about localhost:nnnn vs localhost

    If this isn't a great story on why to use Source Control, I don't know what would be :)

    Glad to hear that you got it all sorted out though!

    Gary
  38. VS 2010 Re: Question about localhost:nnnn vs localhost

    Really?!? Is there no source control repository being used? SVN? Git? TFS? Even VSS?
  39. VS 2010 Re: Question about localhost:nnnn vs localhost

    It is probably worth looking into this. If you do a view source on the rendered page, what is the output for the above link?

    Gary
  40. VS 2008 Re: Pass Exception Message to label on another page

    For what it's worth, ELMAH is very good at what it does :)

    Gary
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4