Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Search results

  1. D

    How to Ajax coll Database in MVC C#

    How to link between AJAX, Database and Controller in an MVC project It works as a drop down list and the results can be searched through this drop down list I tried writing the code in Ajax and MVC, and it is expected to create a search list similar to Google, in which I enter some letters and...
  2. D

    Postgres:- No unique constraint in on conflict do update

    I have table revaluation_of_table with unique constraint (item,date,sales_category). I have to update or insert data from stock_revaluation table. So I tried these code. select item,date,sales_category from arpan.stock_revaluation group by item,date,sales_category having count(item)>1 This...
  3. D

    PayPal Rest API Live and sandbox payment not captured

    Developed PHP Paypal Integration via REST API. when creating payment intent to get url to redirect user to Payment gateway it works fine. I get the redirect url as well. Example redirect url live mode https://www.paypal.com/checkoutnow?token=7JR976187U6560045 But when we go to Payment page we...
  4. D

    Navigate one fragment to another fragment using nav graph in android jetpack library

    I am using jetpack navigation graph in my android project. Normally to navigate one to another fragment we connect a link between them in nav graph and call like this findNavController().navigate(R.id.action_navigation_login_to_navigation_send_code) But We can call the fragment this way as...
  5. D

    How to use xpath or css locator to find text in non-identifiable html tags?

    I'm trying to scrap each of the elements separately but they don't have any unique class or id identifier. See a sample of the html structure below: <div class="post-wrap"> <h1 class="entry-title">Elizabeth</h1> <div class="entry-content"> <p><strong>Movie:</strong> Some...
Top