But I have subscription-based login information not the http login information. Let me try if it will work with WebClient but I think it won't. Right now when I try to fetch say...
Type: Posts; User: usamaalam
But I have subscription-based login information not the http login information. Let me try if it will work with WebClient but I think it won't. Right now when I try to fetch say...
Hello Everybody,
I have subscription to a website where I can login and download files. These files are secured so I cannot download them with a direct link.
Is there any way that I login...
Hello Everybody,
On my page load, I need to download a file say http://example.com/file.csv or https://example.com/file.csv to some location on my web server without prompting save as dialog box. ...
My client wants to use java so as to run the video call function on all the java enabled browsers.
Thanks.
Hello everybody,
I need to develop a java applet that will reside on an ASP.NET application to make video calls. For video calls I am thinking to use asterisk gateway. I'll check the asterisk...
Any word on this? I can go with a paid API as well so please let me know if you know any API that can retrieve sharepoint list.
Hello everybody,
What is the easiest way to fetch contacts from sharepoint server to my custom asp.net web application?
Thanks.
This is great function, thanks a lot.
I was wondering why the spaces are not removed with LTRIM() RTRIM(), finally I found it was either CHAR(10) or CHAR(13) instead of CHAR(32).
Thanks.
Hello CVMichael,
Sorry to disturb you again, I have a little problem in implementing, not related to your function but writing SQL over it. I have the following SQL statement:
DECLARE...
I just copied your function and it worked. I only added OPTION (MAXRECURSION 32767); in your function but if replacing the function solved the issue then I must had something wrong in implementing...
Here's the attachment.
I am still unlucky on this. Please see the attached screenshot.
Thanks.
I'll change the data type and it will take me a little longer because I need to change all the stored procedures as well. Lets make the SQL work on VARCHAR(50). When I run the following SQL, I am...
In my table, the column [Name] is VARCHAR(50) and other three columns are NTEXT, so what should I use? I am using SQL Server 2005. I have very long strings in each of the NTEXT columns.
Thanks.
CVMichael,
Thanks a lot for the great code. I have following SQL with respect to your suggestion:
DECLARE @tmp TABLE (
ID INT IDENTITY(1,1)
, [Description] TEXT
)
Hello Everybody,
Is this possible to select a particular column in the way that select each word in each of the rows with its word count. For example, if I have a table like this:
ID ...
Hello Everybody,
My user will select multiple files with checkboxes and click one button Download to download all the files in a specified folder. Is it possible to download all these files at...
Is there any other way where I can specify orientation? I can get rid of the above method.
Thanks.
Hello Everybody,
I am using following method to print a file programmatically. Is there a way to tell the program to print the file in landscape?
Public Function PrintPDF(ByVal PDFFile As...
Hello Everybody,
I have a problem deploying crystal report on Windows 2008 R2 server. I had a web app that was developed with VS 2003 and working fine with Crystal Reports on a Win 2003 Server. ...
Yes exactly, this is was I was referring to. I was unfaimiliar with the terminology.
Thanks.
Hello Everybody,
I have one website running on one server and another web application running on another server. My web application asks for username/password to login into the system. I need to...
The exception went away with your workaround, thanks.
But another exception started coming on all the pages that preview crystal report, they say "The type initializer for...
You mean I should just replace 10.5.3700.0 with 10.2.3600.0 in web.config?
Thanks.
Hello Everybody,
I had an asp.net web app developed with VS 2003. The web app had extensive use of crystal reports that were developed with Crystal Report 10. I converted the web app to asp.net...
Hello Everybody,
I had an ASP.NET 1.1 application that I converted to 2.0. I deployed the application under IIS 7 on Windows 2008 Server. I can browse images and static html pages but I can't...
As I mentioned earlier, I have another website that works when I set its application pool to ASP.NET 1.1. You can run the site with the this url http://attend.pcsn.net/.
Thanks.
When I change the application's Application Pool to ASP.NET 1.1, the website doesn't come up at all.
Thanks.
Yes, I myself developed this application from 0 to 100% with VS 2003. I use to run it on my local system with VS 2003 and on the previous server it was running under ASP.NET 1.1. Here's the page...
Hello danasegarane,
I think this article won't go for me since I have IIS 7.0, ASP.NET 1.1 dynamic pages that work under v2.0 but not under 1.1.
Thanks.
Yes, indeed I have a separate application pool for each application. There is an app pool called ASP.NET 1.1 created by .NET framework 1.1 and another app pool that I created that uses v2.0. If I...
.NET Framework 1.1 SP1 is installed and allowed.
One thing I just noticed, I have another very small application that was developed with ASP.NET 1.1 but was running under v2.0. When I selected...
Hello Everybody,
I have an ASP.NET 1.1 app running fine on my local system and Win 2003 server. I transferred this site to a Win 2008 R2 server. The site is running under an app pool configured...
It was my mistake, I couldn't even relay using command prompt. When I was able to send emails with command prompt, my app also started working.
Thanks.
I have a local smtp server installed on the server, but how do I send email to that server when System.Web.Mail.SmtpMail is no longer used?
Thanks.
Hello everybody,
I had an ASP.NET 1.1 app running on Windows 2003 server perfectly. I migrated the application to a Windows 2008 R2 server and now the email function doesn't work. SMTP Server is...
Actually in my case, I just need to save the data, perform very little calculation, email the result and the data is then useless and will never be fetched. This is why I don't care if SessionID is...
Yes I am using SessionID as candidate key.
I was surprised too, I took a simple plane page and put the following line in page load and was getting a new value on every refresh.
string sessionID = Session.SessionID;
Thanks avrail...
The problem is just resolved. Session.SessionID was not persistent but when I saved something in a session variable, it works great. I added the following line on my page load event and now I get...