Looking at the controls more closely I can created the desired popup by using the Animation control. I appreciate your response. Thank you.
Jason Weibel
Posts
-
mouse hover popup -
mouse hover popupOn http://www.asp.net/ajax/showcase/ when you hover over a showcased site a window will popup giving more detail about the site. What control is providing this functionality and where can I find a sample. Thank you,
-
Edit.ScrollLineDown (Scrolls text down one line) command.Thanks for the help – that's what I needed to know.
-
Edit.ScrollLineDown (Scrolls text down one line) command.How can I change VS 2005 shortcuts so CTRL + DOWN ARROW does the Edit.ScrollLineDown (Scrolls text down one line) command. Thank you,
-
SFTP using FtpWebRequest class?The server is running and I have no problem connecting with WS-FTP. I'm starting to wonder if FtpWebRequest works for SFTP. I have been reading some blogs and others are having the same problem but no one has a solution. Here are some links: http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=346870&SiteID=1 http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=532122&SiteID=1 At this point I'm going to look into other ways to get this resolved.
-
SFTP using FtpWebRequest class?Here is the C# version - I'm really not interested in getting into a C# is better then vb debate. I just want get this working so I can move on to the next item on my to do list.
private void List(string listUrl, string username, string password) { StreamReader reader = null; FtpWebRequest listRequest = WebRequest.Create(new System.Uri(listUrl)); System.Net.ServicePointManager.CertificatePolicy = new TrustAllCertificatePolicy(); listRequest.Method = WebRequestMethods.Ftp.ListDirectoryDetails; listRequest.KeepAlive = true; listRequest.EnableSsl = true; listRequest.Credentials = new NetworkCredential(username, password); FtpWebResponse listResponse = listRequest.GetResponse(); reader = new StreamReader(listResponse.GetResponseStream()); } public class TrustAllCertificatePolicy : System.Net.ICertificatePolicy { public bool CheckValidationResult(System.Net.ServicePoint srvPoint, System.Security.Cryptography.X509Certificates.X509Certificate certificate, System.Net.WebRequest request, int certificateProblem) { return true; } }
-
SFTP using FtpWebRequest class? -
SFTP using FtpWebRequest class?I am attempting to read an SFTP directory using the FtpWebRequest class, but am getting the error 'Unable to connect to the remote server'. Here is my code:
Private Sub List(ByVal listUrl As String, ByVal username As String, ByVal password As String) Dim reader As StreamReader = Nothing Dim listRequest As FtpWebRequest = WebRequest.Create(New System.Uri(listUrl)) System.Net.ServicePointManager.CertificatePolicy = New TrustAllCertificatePolicy listRequest.Method = WebRequestMethods.Ftp.ListDirectoryDetails listRequest.KeepAlive = True listRequest.EnableSsl = True listRequest.Credentials = New NetworkCredential(username, password) Dim listResponse As FtpWebResponse = listRequest.GetResponse() reader = New StreamReader(listResponse.GetResponseStream()) End Sub Public Class TrustAllCertificatePolicy Implements System.Net.ICertificatePolicy Public Function CheckValidationResult(ByVal srvPoint As System.Net.ServicePoint, _ ByVal certificate As System.Security.Cryptography.X509Certificates.X509Certificate, _ ByVal request As System.Net.WebRequest, ByVal certificateProblem As Integer) As Boolean Implements System.Net.ICertificatePolicy.CheckValidationResult Return True End Function End Class
I appreciate any advice you can provide into what I'm missing. Thank you, -
2.0 Framework Zip ClassIn the 2.0 framework is there a class that will provide functionality to do zipping and unzipping of file? Thank you,
-
SSL Connection?Problem resolved - the certificate was setup for the current user but not for the local computer. Thanks for your help; do you happen to know of a good article on certificates?
-
SSL Connection?Looking at the LogonUser could the problem be with the dwLogonType (LOGON32_LOGON_INTERACTIVE) I am using?
-
SSL Connection?I'm running Windows XP Professional Service Pack 2 - thoughts?
-
how to compare whetther a substring is available in striong or notI'm still working with 1.1 so that is good to know when I move to 2.0 – thank you. I see your point with using the IndexOf and agree it will provide better performance then the function.
-
code being displayed at the top of the pageSorry Todd you have me stumped, if you discover the answer please let me know what it was – best of luck.
-
code being displayed at the top of the pageNow I am getting a better picture, first a clarification codebehind is the page.vb file which the page.aspx inherits from. Question, is the application written with spaghetti code like an asp app, where the vb code is in the same file as the html?
-
how to compare whetther a substring is available in striong or notTo the best of my knowledge .Contains is not available to string variables. It is for ArrayList and other Collection objects. If this is wrong could you please show me an example?
-
how to compare whetther a substring is available in striong or notUsing IndexOf will work but the System.Text.RegularExpressions is a better way, here is an example.
Private Function InLine(ByVal Line As String, ByVal Value As String) As Boolean Dim r As Regex = New Regex(Value, RegexOptions.IgnoreCase) Dim m As Match = r.Match(Line) If m.Success Then Return True Else Return False End Function
-
code being displayed at the top of the pageWhen an app is compiled in debug mode and an unhandled error occurs the error will be printed to the screen along with the code that it erred on. My guess was that a custom component was being used for the header and that erred. The message was sent to the screen and that is want you were seeing. To help resolve this could you tell me more about your environment? What version of visual studio, language, are frames used? The other guess I had was the original developer used response.write for debugging and that is what you are seeing.
-
Buffering or Caching. -
How to from a textbox template columnAs I understand it, since you are creating the datagrid dynamically the viewstate must be rendered before you can use the findcontrol method. Try moving the findcontrol to the page prerender and see if that resolves the problem.