Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I am currently working with signalR and its purely new to me.and i have to bulid a application, in that i want to display signalR interaction with database and wants to display a gridview/html table an wants to perform crud operations. and that chages must reflect instantly on other browsers. i have done lots of google but i am not getting any example that help me.So please if any one has any demo application that interact with db using ado.net please help me out i am very thank ful to you
Yes you can use Ado.net with signalr follow this link given below for the demo application
http://www.c-sharpcorner.com/UploadFile/raj1979/broadcast-sql-data-using-signalr-in-Asp-Net/
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
Can anyone suggest me some websites to learn WPF Application Framework (WAF ) for beginner ? I haved read here http://waf.codeplex.com/. But its not show up any tutorial links even Google.
Look around on MSDN, they have lots of good tutorials. In particular I would recommend this article.
In general though, just try stuff. Create a simple application, hook it up to a simple view model, and once you get something working, start changing small pieces to make it do what you want. In my experience that is always the best way to learn a new technology!
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I plan to integrate parts of the IBM Filenet archiv solution into my ASP.NET web application.
Perhaps in a framework or something like that.
Has anyone experience with that or does anyone know that there is the possibility to call a webservice?
Best Regards
IBM FileNet offer Java and .Net API to connect either the Enterprise Java Beans (EJB) or Web Services Interoperability (WSI) protocols.
see for more details:
http://pic.dhe.ibm.com/infocenter/p8docs/v5r0m0/index.jsp?topic=%2Fcom.ibm.p8.common.dev.doc%2Fdev_roadmap%2Ftools.htm
http://pic.dhe.ibm.com/infocenter/classify/v8r7/index.jsp?topic=%2Fcom.ibm.classify.ccenter.doc%2Fbnrgs003.htm
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I am looking for a professional tool that will enable me to implement an excel like formula engine.
I require support for custom functions, an editor (in winforms or WPF) which gives a descent user experience (Intellisense , auto complete, partial evaluation of the formula etc...)
All I could find so far are just back-end projects such as:
http://www.codeproject.com/Articles/17853/Implementing-an-Excel-like-formula-engine
http://www.codeproject.com/Articles/57264/Eval3-wrapper
And those do not provide any client side , only backend engine.
There are some Excel-formula-engines out there (mostly commercial) - but since you need a frontend too the only one I know of is SpreadsheetGear. Hope this helps...
Spreadsheetgear is one of the more established products. According to their site Microsoft also use their product?? It's expensive though.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
There is quite a few code samples on PayPal GitHub showing how to implement IPN listener in various languages (php, VB, ...). However, there is none for the ASP.NET MVC. Has anybody successfully implemented it? Or is there, similarly to the other code samples, a preferred/oficial way of implementing it?
A neat video on a simple MVC site structure that includes PayPal IPN:
http://www.asp.net/mvc/videos/mvc-1/aspnet-mvc-storefront/aspnet-mvc-storefront-part-22-restructuring-rerouting-and-paypal
Direct link to his IPN controller
https://mvcsamples.svn.codeplex.com/svn/trunk/Kona.Web/Controllers/PayPalController.cs
MVC/C# Example:
http://www.markstraley.com/Code/PayPalIPN
Thanks #Earlee!
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
there's any tutorial who explains how to use asp mvc with postgres? (or any other db who don't be MSSQL)
There's two ways you can go.
You can use a data provider like
this:
http://npgsql.projects.postgresql.org/exampleprograms.html
You can use a LINQ provider for
Postgres similar to this:
http://www.devart.com/dotconnect/linq.html?gclid=CP7V6ePG6ZsCFSMSagodlWxx5Q
Here's a code project article describing how to use the data provider: http://www.codeproject.com/KB/database/afppostgresqlintro.aspx
I have to use a webservice as data source, i make a wrapper for the webservices and put all the data in lists, so i can use linq with them. Then use all existing tutorials for MVC.