Search:

Type: Posts; User: danasegarane

Page 1 of 13 1 2 3 4

Search: Search took 0.68 seconds.

  1. VS 2019 Re: Underlying connection closed unexpected error occurred during a receive operation

    Happy to see that worked. Please mark the thread resolved.
  2. Re: GetFiles not retrieving all files meeting criteria

    Please follow the documentation for the getfiles method.

    https://docs.microsoft.com/en-us/dotnet/api/system.io.directory.getfiles?view=net-6.0

    Eg

    Wildcard specifier Matches
    *...
  3. Replies
    4
    Views
    5,666

    Re: Just to be sure, get remote IP address

    This will return the server ip address where the application is running not the client IP address. You can try something like


    string clientIp = (Request.ServerVariables["HTTP_X_FORWARDED_FOR"]...
  4. VS 2019 Re: Underlying connection closed unexpected error occurred during a receive operation

    This may due to few of the reason like
    Website may be blocking frequent request to avoid load on their server

    Have try catch and handle this error and do retry operation
  5. Replies
    1
    Views
    670

    Re: Accessing elements of an object

    myJSON will have list of keys provided by the useURL. You can access the json keys like myJSON['City']. This will get eh city data from JSON. You have also not share the URL you are connecting to.
  6. Replies
    3
    Views
    17,940

    Re: rest sharp code is not working

    If you are getting the method is not allowed this mean that the API is not having that method.


    // IRestResponse apiresponse = apiclient.Execute(request);

    Looks like you are doing a post...
  7. Re: asp.net webform app not working in iphone (safari and chrome)

    In these kind of conditions our god is IE, First we have to check then only move to other browsers :)
  8. Re: asp.net webform app not working in iphone (safari and chrome)

    I do not have ios to test. But I doubt this may be the issue.


    position: relative;

    Since the position is relative it me move based on the size of the elements.

    Try playing with that...
  9. Re: asp.net webform app not working in iphone (safari and chrome)

    Please share the details like what is the issue you are facing(Error messages, screen shots)
  10. Re: Asp.net webforms stacking panels

    Are you trying like this?

    https://docs.microsoft.com/en-us/dotnet/api/system.web.ui.webcontrols.panel?view=netframework-4.8
  11. Replies
    10
    Views
    3,572

    Re: Problems with ViewState

    What is the error you are facing.
  12. Replies
    11
    Views
    3,168

    Re: Deploy Asp.Net webforms app.

    From the Error, I can see that the IIS folder is not setup correctly. The Server is not able to recognize the Asp.net Application. Also I see that the Version of .Net framework is configured as 4.0. ...
  13. Replies
    11
    Views
    3,168

    Re: Deploy Asp.Net webforms app.

    This is not giving full details of the error. Please modify the config file and find this tag


    <configuration>
    <system.web>
    <customErrors mode="Off>
    </system.web>
    </configuration>...
  14. Replies
    11
    Views
    3,168

    Re: Deploy Asp.Net webforms app.

    Sure. If you are facing the issue again, Share the error message.
  15. Replies
    11
    Views
    3,168

    Re: Deploy Asp.Net webforms app.

    This is what I do when I publish my sample site to Someone.

    1. Right Click Project and Publish to a folder in Release Mode.
    2. Zip the content of the Publish folder.
    3. Upload the zip file to...
  16. Replies
    6
    Views
    6,789

    VS 2010 Re: Get and read JSON data

    Looks like you are getting exception in this part of code.


    Dim details = JObject.Parse(jsonResult)

    You are trying to parse jsonResult to JObject , and this appears to be not supported.
    ...
  17. Re: Redirect HTTP to HTTPS in IIS 10 / Windows 2016

    @Steve, Does this helps?

    https://docs.microsoft.com/en-us/iis/configuration/system.webserver/httpredirect/
  18. Replies
    6
    Views
    6,789

    VS 2010 Re: Get and read JSON data

    The error means that you are casting the each row to


    For Each msg As JObject In item.Value

    And then assignning to


    drNewRow.Item("address") = msg("address")
    ...
  19. Re: ExecuteScalar: CommandText property has not been initialized

    I doubt the connection is not opened correctly. Refer to this link for correct way of using Sqlcommmand.



    Shared Public Function AddProductCategory(ByVal newName As String, ByVal connString As...
  20. Replies
    2
    Views
    1,195

    VS 2013 Re: Error - "Stop running this script?"

    This should not case for this error. I assume you should be doing something in the client with Javascript and that could cause this issue. Redefine your client side script will solve this issue
  21. Replies
    4
    Views
    1,601

    VS 2010 Re: DataGrid update command runs twice

    I don't find any issue with the code. You are correctly re binding the code after update then the bind is called inside not post pack event. May be you need to check this function..
    ...
  22. Replies
    4
    Views
    1,601

    VS 2010 Re: DataGrid update command runs twice

    There is no code for sending for email here?
  23. Re: Delete and button field not clickable in GridView

    Does that DataKeyNames it the primary key for the table. Normally the rows are deleted based on the Primary keys.
  24. Re: Uploading a file without, as it were, actually uploading the file

    If you know the file list, then you can list the files in a dropdown/List then can give the option to choose file name. Does that makes sense?
  25. VS 2010 Re: Combo Box Wrapping Text even though there is room to display?

    You may also need to check the parent style settings. If that restricts to a defined width you will face the above problem
  26. Re: Delete and button field not clickable in GridView

    From MSDN :




    Looks like you are missing the DataKeyNames setting. Refer the above MSDN link
  27. Re: Uploading a file without, as it were, actually uploading the file

    Yes. You can use the fileupload control. When using the File upload controls the file is save when you call the FileUpload.SaveAs method. Otherwise it is not saved.

    And for the getting the...
  28. Replies
    8
    Views
    1,833

    VS 2012 Re: button not firing

    I don't get this. If the textbox value is changed from something to nothing then it means that the page is posted back. You need to check these lines

    cmd = New SqlCommand("Update [tablename] Set...
  29. Replies
    8
    Views
    1,833

    VS 2012 Re: button not firing

    Have you tried to put a break point on the

    Dim con As SqlConnection = New SqlConnection("" & ConfigurationManager.ConnectionStrings("employeeConnectionString").ConnectionString & "")

    and check...
  30. Replies
    8
    Views
    1,833

    VS 2012 Re: button not firing

    The button should be added under the update panel, I see it is not added like that.. Refer MSDN
  31. VS 2010 Re: GridView EditItemTemplate CheckBoxList not showing up every other row.

    Looks like you are missing the DataControlRowState.Alternate when binding the checkbox. This event will be fired for every even rows of the gridview.

    Change this

    If e.Row.RowType =...
  32. VS 2012 Re: One row in gridview but going into DataControlRowType.DataRow twice why????

    Does the Dropdown is inside the Gridview?. If yes then you need to handle the Gridview_RowCommand Event. And it will be good if you post the entire code.
  33. VS 2012 Re: One row in gridview but going into DataControlRowType.DataRow twice why????

    I have a doubt, Do you call the BindGrid method in the page load event?. This should be done under !Page.IsPostBack check.
  34. VS 2008 Re: ODBC Connection to local MySQL DB throws "Datasource Name not Found"

    Try this one
  35. Replies
    2
    Views
    1,731

    VS 2005 Re: Debugging Popup Window

    Yes, you can see , when you move the cursor over "ref " , you will get zoom button, when I clicking that you will be displayed in a grid
  36. VS 2012 Re: [RESOLVED] Can you do a post from a gridview?

    Handle the RowDataBound event, find the button with the ID, then set as you like
  37. VS 2008 Re: [RESOLVED] CrystalDecisions.ReportAppServer.CommLayer

    @ momoaal

    Previously I checked with most of the Shared Hosting providers and their answer will be, " You cannot use crystal Report on Shared Services" ,by a dedicated server.


    Hope you will...
  38. Replies
    2
    Views
    1,186

    VS 2010 Re: Div Question

    Are you looking for something like this one?

    Demo : http://www.alessioatzeni.com/wp-content/tutorials/jquery/simple-tooltip/index.html
    Download :...
  39. Replies
    1
    Views
    942

    VS 2010 Re: validaton controls in Gridview

    Adding Validation Controls to the Editing and Inserting Interfaces
  40. VS 2010 Re: Best way to create a simple "System Unavailable" page?

    Taking an ASP.NET 2.0 Application Offline
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width