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

Search:

Type: Posts; User: ninhovid

Page 1 of 2 1 2

Search: Search took 0.06 seconds.

  1. Replies
    1
    Views
    30,808

    Re: keep scroll position not working

    it happens when i enable compatibility view
  2. Replies
    1
    Views
    30,808

    keep scroll position not working

    how come chrome and firefox do it by default and internet explorer does not!?

    i've used the maintainscrollposition in the page, and web.config with no success
    i've also used scripts that i found...
  3. Replies
    0
    Views
    1,730

    WrapMode in Datagrid

    Hi

    In winforms i have this in a datagridview:
    dgvRegistros.DefaultCellStyle.WrapMode = DataGridViewTriState.True;

    I want the same behavior in Silverlight in a datagrid, how can i get it done?...
  4. Replies
    1
    Views
    673

    Re: next button not working

    anybody?
    i've "solved" it by using SeparatePages="False"

    it's the only way i get to see all of the pages and get rid of last and next buttons
  5. Replies
    1
    Views
    673

    next button not working

    Hi

    I have an 8-pages report but i can see only the first two pages, and the last one.
    exporting data works perfectly, even if i type the page number 3 (for instance) it shows it to me

    but if i...
  6. Thread: Ajax & jQuery

    by ninhovid
    Replies
    1
    Views
    18,013

    Re: Ajax & jQuery

    nevermind
    event.preventDefault(); was missing

    it works now!
  7. Thread: Ajax & jQuery

    by ninhovid
    Replies
    1
    Views
    18,013

    Ajax & jQuery

    Hi,

    I'm using Ajax and jQuery on a asp.net 4.0 web site.
    I have this code on a webform (which has a masterpage):


    $(document).ready(function () {
    ...
  8. Replies
    2
    Views
    1,187

    Re: Authentication problem

    I disabled anonymous authentication and it doesn't work either
    i've read about identity impersonate but no success so far

    the only thing that works is removing ApplicationPoolIdentity and adding...
  9. Replies
    2
    Views
    1,187

    Authentication problem

    Hi,

    I've always developed using connectionstrings with sql authentication but this time i need to do it with windows authentication

    i have an IIS server in one city, and many sql servers in...
  10. Re: Catchable fatal error: Object of class DateTime could not be converted

    thank you Silviya, good to know...
  11. Re: Catchable fatal error: Object of class DateTime could not be converted

    thanks for your reply
    i'll give it a shot
  12. Re: Catchable fatal error: Object of class DateTime could not be converted

    thanks kbendyk, it worked!

    i'm using mssql though, sqlsrv doesn't have many useful methods like mssql does...
    nice to know how to make it work anyway...

    take care
  13. Re: Catchable fatal error: Object of class DateTime could not be converted

    yes, i do a select * from table
    and there it comes such datatable field that messes up things with sqlsrv.dll and php...

    i haven't found a solution yet, other than starting to use php_mssql.dll...
  14. Re: Catchable fatal error: Object of class DateTime could not be converted

    i found a post through google search, it said i had to download ntwdblib.dll, copy it to system32 and use php_mssql.dll instead of sqlsrv.dll / sqlsrv_ts.dll in php.ini file

    and it's working.....
  15. Re: Catchable fatal error: Object of class DateTime could not be converted

    $result = sqlsrv_query($conn,"select fechapublicacion from sometable");


    i just queried the datetime field but it still does the same.. using SQLSRV_FETCH_NUMERIC and without...
  16. Re: Catchable fatal error: Object of class DateTime could not be converted

    yes, i have... it does the same...

    i've been reading that this php+sql 2005 driver is not the same as mssql.dll, it doesn't have num_rows(), data_seek(), etc...
    why??? :(

    any suggestions?
  17. Re: Catchable fatal error: Object of class DateTime could not be converted

    no, the field is named FechaPublicacion
  18. Catchable fatal error: Object of class DateTime could not be converted

    Hi...

    i'm testing php + mssql 2005 compatibility, using some DLLs microsoft relased which are php_sqlsrv.dll and php_sqlsrv_ts.dll

    i couldn't establish a connection with the first one, so i...
  19. Replies
    2
    Views
    977

    Re: using method POST

    well... for future references..

    you have to use imagebutton.postbackurl property to get it done...
    and sending your hidden parameters inside <form>

    it worked for me...
  20. Replies
    2
    Views
    977

    Re: using method POST

    i need to get this done because i have to send that info to a bank web site via method post, they'll receive my info, display another page and ask for more info to the end user, then the bank will...
  21. Replies
    2
    Views
    977

    using method POST

    Hi...

    I'm trying to send parameters from one page to another in my web application but using method POST... here is what i do:

    Page1.aspx, when i click "Send" imagebutton:


    ...
  22. Replies
    3
    Views
    3,881

    Re: hyperlink onmouseover

    my mistake

    forget about the mouse cursor stuff...
    i had removed the hyperlink's url, that's why i was not getting the hand cursor..

    thanks
  23. Replies
    3
    Views
    3,881

    Re: hyperlink onmouseover

    thanks, it worked...
    the only thing it didn't do was changing mouse behavior...
    with ImageButtons it changes from arrow to hand...
    and it didn't do it automatically...

    i'll see what i can do...
  24. Replies
    3
    Views
    3,881

    hyperlink onmouseover

    hi... why does this work (btnContinue is an ImageButton)?

    btnContinue.Attributes.Add("OnMouseOver", "this.src='/site/images/start-over.png'");
    ...
  25. Replies
    2
    Views
    1,606

    Re: avoiding popup blockers

    yes...
    i had to get it done by using a hyperlink button with a _blank target... instead of a window.open
    thanks
Results 1 to 25 of 47
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured