Now I just trey by chance the way to read the site over the System.Net.WebClient class and it worked pretty well. :-) Actually I have no idea where's the difference but for the moment it's enough, when it works. I'll try to find out why later..
Succodimele
Posts
-
Download a intranet site from a windows form (401 error) -
Download a intranet site from a windows form (401 error)hmm.. This I've already done. I was clear that I have to different between internet and intranet otherwise it had worked. But I dont know how can I access to the intranet.. Any idea? Thanks for your help!
-
Download a intranet site from a windows form (401 error)Over the System.Net.WebRequest class WebRequest request = WebRequest.Create(Path); request.Proxy.Credentials = System.Net.CredentialCache.DefaultCredentials; (HttpWebResponse)request.GetResponse();
-
Download a intranet site from a windows form (401 error)Hello I've got once again a problem with an application of mine.. Im building and application which checks a defined list of links. This windows form application should be able to run from any computer within our company. We have different security zones and we use a proxy configurated by with a automatic configuration script. Now for internet website I haven't any problems. I just use the default proxy and fill the credentials with my user informations. But for the websites into the intranet it doesn't work like that. I just always get a 401 (unauthorized) error message. I know that it's possible to solve that problem without knowing our network security exactly but hopefully anybody has an idea anyway. :-) Thanks a lot and best reagrds
-
Get proxy settings from automatic configuration scriptHello I'm building a windows application for our company, which checks the state of a list with web links. The proxy settings in our company are setted by an automatic configuration script. Is it possible to use these settings to st up WebRequests? WebProxy proxy = WebProxy.GetDefaultProxy(); <- doesnt work. Thanks for your help! Best regards succo
-
How to check if documents on shared folders are availiable?Hello I have to build an application which checks if a document is still availiable on a specific path. This application is used on our intranet. Html sites are no problem but how can I check, if a file on a Share exits? e.g. \\Server01\share$\test.doc It should be possible to differ if the share is unavailiable or if the user hasn't enough rights to access. Are there any opensource solutions for this problem or with which method can i solve my problem? thanks for your help! best reagrds succo
-
Add body onload function dynamiclyHello Is it possible to add a javascript function dynamicly into the "onload"-Element of the body tag, in a ASP.NET- website? And How? ;) Best regards Succo
-
Webbased SQL Query Analyzer?I found the "SQL Server Web Data Administrator" (http://www.microsoft.com/downloads/details.aspx?FamilyID=c039a798-c57a-419e-acbc-2a332cb7f959&displaylang=en). This is exactly, what I've searched for. Thank you!
-
Webbased SQL Query Analyzer?sorry. local to the tool.
-
Webbased SQL Query Analyzer?I search a Web Application, which i can use on my ASP.NET web space. (Something like that: http://www.codeproject.com/aspnet/WebSqlUtility.asp) The Application doesn't have to have an intelligent. I Program my Application on my local Computer and when I'm finish i will put it online. I will create script, which creates the SPs and Tables. The tool have only to exec the SQL-Code.
-
Webbased SQL Query Analyzer?Hello I've got a problem. In my office, the Port 1435 and 1433 under which my MSSQL Database runs is locked. But I have to use the db for the finish work of my apprentice. Is there something Like a Web based Sql Query Analyzer, where I can run SQL Code? With it I can generate my Stored Procedures and tables? Best regards succo
-
URLRewriting of a Pathname like (www.myspace.com/[username])thanks for your answer, works great! first I've forgotten to add the extension for everything (*) to the IIS.
-
URLRewriting of a Pathname like (www.myspace.com/[username])Hello I've posted the question already, but i get no answer. Maybe it was not clear, what's my goal. Thats why I ask again (a bit different;)). I'm sure most of you know myspace.com. There it's possible to visit a userprofile directly over doaminname/username (e.g. http://www.myspace.com/username). I want to build something like this for my own website. I red about URLRewriting, to change the URL into the global.asax (Application_BeginRequest). But this is only possible, when the Directory whith the specific username exists, and into it, there have to be a default.aspx File. Is this right? Do I really have to create all these Directories and Files? Its not a big work, but it doesn't look really nice. I thought also about the possibility to change the 404Error File into an .aspx File and handle it there. Is this the solution? Or which is the right/professional way? Best regards succo
-
URLRewriting without Link to a FileHello I want to make that the users from my Website can visit they're Profile over the websiteurl/username. I have read, that i have got to use url rewriting (into Application_BeginRequest)to handle this. Now if I want to use it this way, there must exist a Folder with the username and a Default.aspx File into it. Otherwise it will never reach the global.asax File and i can't change the URL. Do I really have to create this Folders and Files or can i add something into the IIS or so? I thought also about the possibility to change the 404Error File into an .aspx File and handle it there. Is this the solution? Best regards succo
-
http://path/[Username] - Virtual Directory?Hello I started a little web project, where the users can register and make their own sites. Now i want, that the User can access his personal site directly over the path http://xy/\[Username\] like many other sites. For example http://www.myspace.com/userX But I don't know how to make that dynamic? Sure there is a possibility without create a directory, create a virtual directory and put a index file into it, for each user. Probably it has not a lot to do with c# (I program into ASP.NET with c#). I'm sure someone here can help me? Thanks for your help Yours sincerely