Search:

Type: Posts; User: Kev

Page 1 of 10 1 2 3 4

Search: Search took 0.22 seconds.

  1. [RESOLVED] Getting a web message "An attempt has been to invoke..."

    Hello

    New to jQuery.

    I am trying to run a web application that uses jQuery. I keep on getting:
    "An attempt has been made to invoke jQuey extension BaseControlPlugin.Private_zGetType for a...
  2. Replies
    2
    Views
    857

    Mandatory Text Box validation

    Hello

    Does anyone know of any way to validate the text entered into a mandatory textbox?

    I can get it so that you can't just enter spaces, but I want it so that you just can't enter .'s

    I...
  3. Replies
    1
    Views
    587

    VS 2008 Search for custom controls.

    The system that I work on has a custom generic text box control. One of the properties of this control is MaxLength.

    Is there a way to search through my aspx pages looking for any occurance of...
  4. Replies
    1
    Views
    710

    Windows Service Problem.

    Hello I am writing a windows service using VS2008 and C#, that processes a message queue. When each message has been processed I dequeue. If the dequeue fails I want to store the message ID so...
  5. VS 2008 Re: textbox - disabling the enter/return key.

    Hello All

    Got it to work, I found the following on the internet -



    function DisableSpecialKeyEvents() {

    var nav = window.Event ? true : false;
  6. VS 2008 Re: textbox - disabling the enter/return key.

    It happens in the textbox and it happens even when the textbox doesn't loose focus. I need the textbox to do a postback.

    The TextChanged code is as follows -



    protected void...
  7. VS 2008 [RESOLVED] textbox - disabling the enter/return key.

    I have a custom control that contains a textbox. This textbox holds the date. I also have an image next to the textbox that if clicked on runs a javascript that populates the textbox with the...
  8. Replies
    0
    Views
    904

    VS 2010 http post not picking up parameters.

    Hello.

    New to MVC so please be gentle.

    I have the following cshtml part



    <div id="uploadPanel">
    <form action="/MyForms/Attachments" enctype="multipart/form-data" id="uploadForm"...
  9. Replies
    2
    Views
    1,608

    VS 2010 Re: pass html into razor.

    Thanks for that. Worked like a dream.

    Kev.
  10. Replies
    2
    Views
    1,608

    VS 2010 [RESOLVED] pass html into razor.

    Hello

    I am new to the whole MVC/Razor style of coding.

    I am trying to pass a string to a cshtml file. The string is html. how can I do this. Here is the code -




    @{
  11. Replies
    5
    Views
    1,560

    Re: Remove items from a datasource.

    Code is



    private SiteNameCollection DataSource
    {
    get
    {
    return this.SiteNameMgr().GetByActive(IsActiveSites);
    }
  12. Replies
    5
    Views
    1,560

    Re: Remove items from a datasource.

    It is of type class. Basically it brings back a list of records retrieved by a stored procedure.

    Thinking on it I might be better just changing the stored procedure.

    Kev.
  13. Replies
    5
    Views
    1,560

    Remove items from a datasource.

    If I have a datasource that I bind to a dropdownlist using c#. Can I remove items from the datasource before I bind it?

    If yes, how?

    Thanks

    Kev
  14. Replies
    7
    Views
    982

    VS 2010 Re: Attach Process problem.

    Thank you. That worked.
  15. Replies
    7
    Views
    982

    VS 2010 Re: Attach Process problem.

    There is no IISWEB process running. How do I start that?
  16. Replies
    7
    Views
    982

    VS 2010 Re: Attach Process problem.

    Yes it is.
  17. Replies
    7
    Views
    982

    VS 2010 [RESOLVED] Attach Process problem.

    I have an ASP .Net application that I am trying to attach to Firefox. I have set the property Wait for a request from an external application. When I run debug I attach process to firefox.exe.
    ...
  18. Replies
    4
    Views
    1,596

    Re: Transaction Timeout problem.

    But wouldn't that show up in our relase version as they are practically identical?
  19. Replies
    4
    Views
    1,596

    Transaction Timeout problem.

    Hello, I get a transaction timeout error from my ASP.Net C# application when I try and delete something from the database. The problem is this is only happening in our production site and only in...
  20. Re: Error Message when trying to run Method.

    Resolved. My fault, the code was pointing to an old service that had a very similar path. Couldn't see the wood for the trees...d'oh!!

    Kev.
  21. [RESOLVED] Error Message when trying to run Method.

    I have a windows forms application that references a WCF service.

    When I try run a method in the service I keep on getting -

    The server was unable to process the request due to an internal...
  22. Replies
    4
    Views
    6,797

    Re: Panel Visibility problem.

    Solved it by putting the code -



    if ((Roles.IsUserInRole("OfficeManager")) || (Roles.IsUserInRole("SysAdmin")))
    {
    Panel pnlWorker =...
  23. Replies
    4
    Views
    6,797

    Re: Panel Visibility problem.

    Tried that. didn't work.
  24. Replies
    4
    Views
    6,797

    [RESOLVED] Panel Visibility problem.

    I have a panel in a ASP.Net form that I set the visibilty depending on the user logged in.



    <!-- Worker -->
    <asp:Panel ID="pnlWorker" runat="server" Visible="false">
    ...
  25. Start a System Tray Application from a service.

    How do you start a System Tray application from a Windows service?

    I know how to check to see if it is running. I use -



    Process[] p = Process.GetProcessesByName("processName");

    if...
  26. Replies
    4
    Views
    907

    Re: Webbrowser not loading

    Got it working - used



    private void NavigateTo(string strURL)
    {
    try
    {
    webBrowser.DocumentCompleted += new...
  27. Replies
    1
    Views
    756

    Re: [RESOLVED] Strange Webbrowser Loading.

    Used DocumentCompleted event. Seemed to give better results.
  28. Replies
    4
    Views
    907

    Re: Webbrowser not loading

    Not getting any errors! The page just doesn't move as if frozen.
  29. Replies
    4
    Views
    907

    [RESOLVED] Webbrowser not loading

    I build a url string and load into the webbrowser. I have a next page button that builds a new URL string and uses webbrowser.navigate to load the webbrowser, however the page does not load, the...
  30. Replies
    1
    Views
    756

    [RESOLVED] Strange Webbrowser Loading.

    I am loading up a webbrowser with a google search url so I can screen scrape and find a url. I am doing a screen scrape as well as using the Google custom search api to compare results.

    The thing...
  31. Replies
    9
    Views
    1,995

    Re: [RESOLVED] LINQ to SQL into list.

    Thanks
  32. Replies
    9
    Views
    1,995

    Re: [RESOLVED] LINQ to SQL into list.

    Can I ask, if I had a where clause where would that appear?
  33. Replies
    9
    Views
    1,995

    Re: [RESOLVED] LINQ to SQL into list.

    My mistake, does work.

    Sorry.

    Kev.
  34. Replies
    9
    Views
    1,995

    Re: [RESOLVED] LINQ to SQL into list.

    Tried the above, but doesn't bring back anything.

    Kev.
  35. Re: When do you know when webbrowser is finished?

    Thanks.
  36. Replies
    9
    Views
    1,995

    Re: LINQ to SQL into list.

    Resolved it by -




    public List<Customers> GetCustomerList()
    {
    IRWSEORankingDBEntities context = new IRWSEORankingDBEntities();

    List<Customers> custList =...
  37. Replies
    9
    Views
    1,995

    Re: LINQ to SQL into list.

    What if that list was of a type Customer which is a DataContract class?



    public List<Customers> GetCustomerList()
    {
    IRWSEORankingDBEntities context = new...
  38. Re: How to run something an event when documentcompleted finished.

    Okay, I get what you are saying.

    What I am trying to do is get the HTML from a webbrowser, search the HTML for a certail value. If not found then load the second page into the webbrowser i.e....
  39. Replies
    9
    Views
    1,995

    [RESOLVED] LINQ to SQL into list.

    I have a WCF Library Service that runs between client and database.

    I am new to LINQ.

    Here is my code -



    IRWSEORankingDBEntities context = new IRWSEORankingDBEntities();
  40. Re: How to run something an event when documentcompleted finished.

    Thanks. The only question I have now is how do I know when the original DocumentCompleted event has completed so I can check to see if I have to reload the webbrowser. The code I have at the moment...
Results 1 to 40 of 386
Page 1 of 10 1 2 3 4



Click Here to Expand Forum to Full Width