LiveDataContext.SignIn - asp.net

Am I correct in understanding that the Method LiveDataContext.SignIn can only be used in Windows Applications?
Reference:
http://msdn.microsoft.com/en-us/library/ff747817.aspx
I tried to implement it in ASP.NET but get an error that I cannot use Modal Windows. So it seems to me that SignIn uses the Windows.Forms.
Thanks for your time.

It's pretty independent of mvc or webforms I think.
Windows Live Messenger Connect Developer Guide
http://msdn.microsoft.com/en-us/library/hh243641.aspx

Related

How can I view IBM Watson Assistant conversation logs in my ASP.net application?

I understand that there is an API... but how do I implement it? I have a working node.js application but now I have to bring it over to asp.net. I think working from scratch on my asp.net web app is the best option now but I do not know how to start.
I agree that knowing the exact issues you run into will help us give a better answer, but to get you started here is the .net sdk
https://github.com/watson-developer-cloud/dotnet-standard-sdk
and the standard api reference with examples
https://console.bluemix.net/apidocs/assistant

SignalR in windows forms

SignalR is very interesting and impressive in real time web applications. Now I am doing a simple chat applciation using windows forms.
Whenever, I use ".wait()", it threw an error 'one or more errors' and while invoke the message from text box, there is an error 'start must be call before send'.
I don't know where i made mistake. I tried many of the solutions. But it doesn't work. Everything is perfect in web and console applications.
Can anyone help me?
Can you give some examples with how it works...?
I couldn't see any samples of signalR in windows forms.
Assuming you are trying to do a SignalR Client in Windows Forms Appliation then check this post(http://mscodingblog.blogspot.com/2012/12/testing-signalr-in-wpf-console-and.html) on how to do client side SignalR in WPF application in VB. With similar approach I guess you could make Signalr client working in Windows Forms Application.

invoking winforms in web application

I have a windows control library having PictureBox and ColorDialog. How can I get it in Web Application? Will u please help me?
You can host it as ActiveX object but it will work only in IE.
Don't just invoke. Also use it under web application. Try VisualJS.NET It lets you design and develop under WinForms and run it under browser.

Windows Forms message box doesn't work in published ASP.Net application

We're developing .Net Application using asp.net and C# and .Net Framework 3.5.
We are using windows form message box in a .Net application.
This windows form works great on the debug mode but once we publish the application this message box won’t work.
We are referencing System.Windows.Form.dll in order to use the message box features.
Kindly advice if we need to register this DLL or follow some configuration steps in order to solve this problem.
Thank in advanced,
Jad
Don't use MessageBox in a web application. It will show up on the server console, there's nobody around to click the OK button. I assume that ASP.NET has some counter-measures against it, given that it is such a serious denial-of-service attack.
If you are using unreferenced classes a project/solution is usually not even compiled.
So probably the problem is in another place. Are you sure that the code that should display the MessageBox is executed?
EDIT: When you develop web applications (ASP.NET), as described by you in comments, you cannot use Winforms MessageBox.
Try showing it with javascript, if you really need it
Response.Write("<script>alert('This a message')</script>");

headless browser for ASP.NET

I am developing full ajax web app. So I need to develop google crawlable app, also I must create snapshot for googlebot.
Do you know headless browser works with javascript and ajax for ASP.NET ?
I found XBrowser but right now it hasn't JavaScript support.
sorry for my English :).
For ASP.NET I would suggest WatiN. It was originally designed for automated integration testing but would work great for making snapshots.
See here: headless internet browser?
and here: http://htmlunit.sourceforge.net/

Resources