Search:

Type: Posts; User: avrail

Page 1 of 13 1 2 3 4

Search: Search took 0.25 seconds.

  1. Replies
    16
    Views
    1,688

    VS 2010 Re: fileupload on image control

    sure you done something wrong :)

    can you send me a sample for your code
  2. Replies
    16
    Views
    1,688

    VS 2010 Re: fileupload on image control

    you should look to the link that i sent to you,
    i tried the code there and it was working fine,
    i can not help you with out a clear description for the error :)
  3. Replies
    16
    Views
    1,688

    VS 2010 Re: fileupload on image control

    i don't know what you mean

    when you click on the error, where you go ??
  4. Replies
    16
    Views
    1,688

    VS 2010 Re: fileupload on image control

    hay,
    change

    Public Sub ProcessRequest(ByVal context As HttpContext)
    to

    Public Sub ProcessRequest(ByVal context _
    As System.Web.HttpContext) _
    Implements...
  5. Replies
    16
    Views
    1,688

    VS 2010 Re: fileupload on image control

    try this

    ' Override the IsReusable property.
    Public ReadOnly Property IsReusable() As Boolean _
    Implements IHttpHandler.IsReusable

    Get
    ...
  6. VS 2010 Re: [RESOLVED] clear textboxes on click of a button

    hay,
    please don't forget to mark the thread as resolved :)
  7. VS 2010 Re: clear textboxes on click of a button

    yes,
    that's true :)

    change LoopInsidControls with ClearData

    sorry for this
  8. VS 2010 Re: clear textboxes on click of a button

    you can use this link to convert from c# to vb

    http://converter.telerik.com/
  9. VS 2010 Re: clear textboxes on click of a button

    hay,
    this in vb



    Public Sub ClearData(ctrl As Control)
    For Each childControl As Control In ctrl.Controls
    If childControl.HasControls() Then
    LoopInsidControls(childControl)
    Else
  10. Replies
    1
    Views
    734

    VS 2010 Re: Inserting a Time from a Drop Down List

    hay,
    first of all please use the code tag when you post a codes, this make reading easy for us :)

    you passing the
    cboTime.SelectedIndex and this is not the right thing
    I believe that you...
  11. Re: how can i make 2 sql statsment for a database

    hay,

    to check that there is a record into the database, you need to use

    reader.HasRows
    if true then there is a rows into the database else this means there is no rows for the first select. ...
  12. VS 2010 Re: clear textboxes on click of a button

    hay,
    I supposed that you added your textboxes in Panel control

    all you do, is to call


    ClearData(pnl);
  13. Replies
    16
    Views
    1,688

    VS 2010 Re: fileupload on image control

    hay,
    please follow this link, it is working as you exepected, if I understand you :)
    Click Here
  14. VS 2010 Re: Changing Treenode backcolor dynamically in code

    hay,
    you need to understand first, how the treeview object is created on the client browser,
    the TreeNode is a <td>,
    i think the right thing here is to use a css

    one for the nodes that...
  15. Replies
    6
    Views
    1,201

    VS 2010 Re: asp button - problem calling server function

    hello,

    checkFileExtension

    as riteshjain1982 check your javascript function, if it return false then your server side event will not be called
  16. Replies
    3
    Views
    2,714

    VS 2010 Re: ASP.NET Vertical Menu Control

    hello,
    you can use DevExpress Controls, the menu is free, but need a registration on there website only

    http://www.devexpress.com/
  17. Thread: SQL format

    by avrail
    Replies
    2
    Views
    576

    Re: SQL format

    Hello,
    I think you want to create a money format

    please follow this link if so
    http://www.sqlusa.com/bestpractices2005/moneyformat/
  18. Thread: Session timeout

    by avrail
    Replies
    1
    Views
    840

    Re: Session timeout

    Hello,

    sessionstate timeout is number of minutes not seconds

    the webconfig will override the one in the IIS

    please follow this link ...
  19. Re: ASP.NET 4 app working fine in localhost, giving runtime error in remote machines

    Hello,
    by saying "my problem is that I can't load data from a MS Access database that's linked to a remote sql server"

    is this means that you get some errors ??
    if so can you post it ?
  20. Replies
    7
    Views
    1,367

    Re: Background image in CSS

    Replace
    ./images/divpanel.gif
    with
    ~/images/divpanel.gif
  21. Replies
    2
    Views
    613

    VS 2005 Re: help needed in gridview cel click

    hay,
    i think this can help
    http://aspadvice.com/blogs/joteke/archive/2006/01/07/14576.aspx
  22. Replies
    3
    Views
    679

    VS 2005 Re: Weird SQL Error on Web Server?

    hay,
    Please verify that MSSQLServer instance is running
    if not so run it
  23. VS 2008 Re: dynamically select item in DropDownList

    happy to hear it :)
    don't forget to mark the thread as resolved
  24. VS 2008 Re: dynamically select item in DropDownList

    it is on the top of your webservice
  25. VS 2008 Re: dynamically select item in DropDownList

    ' To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment the following line.
    ' <System.Web.Script.Services.ScriptService()> _

    i think you didn't uncomment this line ?
  26. VS 2008 Re: dynamically select item in DropDownList

    nop, it is the same,
    the code will be converted for sure , but the way are the same in c# and vb
  27. VS 2008 Re: dynamically select item in DropDownList

    you don't need to publish a webservice
    in your website, all you need is to add a webservice by right click on your website in solution explorer
    >> add new Item >> select a webservice item

    and...
  28. VS 2008 Re: dynamically select item in DropDownList

    you are welcome :)
  29. VS 2008 Re: dynamically select item in DropDownList

    update me if there is a problems yet :)
  30. VS 2008 Re: dynamically select item in DropDownList

    hay,
    yes you need to create a web service
    but what you mean you try to add .asmx file but it converted to .vb ?
    you should find two different files
    file one is WebService.asmx out of the...
  31. VS 2008 Re: dynamically select item in DropDownList

    hay
    please follow this link
    http://avrail.wordpress.com/2010/01/07/how-to-use-autocomplete-using-ajax/
  32. VS 2008 Re: dynamically select item in DropDownList

    you can use ajax autocomplete

    http://www.asp.net/ajaxlibrary/AjaxControlToolkitSampleSite/autocomplete/autocomplete.aspx
  33. Replies
    2
    Views
    1,068

    VS 2008 Re: Cookie not saving

    hay,
    as Gary asked you, you have to check if the cookies enabled into your browser



    if(Request.Browser.Cookies)
    {
    /// this means it is enabled and supported in your browser
    }
    else{
  34. Replies
    10
    Views
    1,987

    Re: Static methods in asp.net

    i am so sorry Gary :)
    so what is the big use for the Static methods ?
  35. Replies
    10
    Views
    1,987

    Re: Static methods in asp.net

    so if i 2 users called this method, there will be no interference of data ?
  36. Replies
    10
    Views
    1,987

    Re: Static methods in asp.net

    no that's not what i mean :)
    i mean when i use static methods in asp.net, the method work per user or per application "like static variables"
    i hope i clear what i mean
  37. Replies
    10
    Views
    1,987

    Re: Static methods in asp.net

    well, when 2 clients called the static method to execute a sql statement @ the same time,
    are there any problem @ this time ?

    for example client 1 sql statement is " select * from login"
    client...
  38. Replies
    10
    Views
    1,987

    Re: Static methods in asp.net

    now, if it is not safe, so how could i use JQuery Ajax and the server side,
    if the only way to use webMethod is to name it as static :S
  39. Replies
    10
    Views
    1,987

    Static methods in asp.net

    hay,

    i understand the problem of the static variable inside a class in the web application,

    now i try to create a simple class to deal with SQL Server for example,
    so i created Static Method...
  40. VS 2008 Re: What Should I do if Javascript was disabled?

    thanks for the links :)
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width