- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 6
- Posts with Downvotes
- 6
- Downvoting Members
- 2
24 Posted Topics
hi, i ve tried to auto login into an asp.net website. using javascript i can automatically log in to the [url]www.irctc.co.in[/url] website but the same code have not worked for the website i ve tried. it have not even fill the username and password in the required filed. it just …
hi, this is a simple login script try this [CODE] <html> <head> SCRIPT LANGUAGE="Javascript"> var COLOR = 999999 var woot = 0 function stoploop() { document.bgColor = '#000000'; clearTimeout(loopID); } function loopBackground() { if (COLOR > 0) { document.bgColor = '#' + COLOR COLOR -= 111111 loopID = setTimeout("loopBackground()",1) } …
I have searched this forum and others for my current dilemma, but to no avail. There have been several related posts but I haven't seen any solutions! 1. I am downloading zip files from a password protected website using Internet Explorer Automation. I am able to navigate to the site, …
hello all, pls be patience to read this, pls im doing a project in c#. to automate the downloading process.. my task is 1.Login to the website 2.Click the button on the next page(2nd page) 3.Click link and then a button on the next page(3rd page) 4.then the File download …
im presently using two buttons in a form and a webbrowser control. button1-Navigate to the page button2-Fills user,pass and then submit like this [CODE] private void button1_Click(object sender, EventArgs e) { webBrowser1.Navigate("http://www.xxxx.login.aspx"); } private void button2_Click(object sender, EventArgs e) { webBrowser1.Document.GetElementById("username").InnerText = "aaaaa"; webBrowser1.Document.GetElementById("password").InnerText = "bbbbb"; webBrowser1.Document.GetElementById("login").InvokeMember("click"); [/CODE] and it …
hello all, i need to extract table contents from a html page.. in that table one of the column has the links.. i need to extract that link too as of other column elements.. is it possible? i need to extract it and then to store in a database. actually …
hello all, pls have some patience to read this and help me. Im a student and doing a project using CSharp. Im doing an automation process. For which i ve to login to a website click some links and then download files from there. I cant download all the files …
Hello all, Im sure anybody here can help me.. this is my problem. Im trying to automate downloading a file from a web page. i knew the file name too. But i cant achieve my task.. Really dont know whats the problem. and also dont know what to do. i …
hello, is it possible to sign out from the website programmatically.. if possible means how can i? thanks in advance
hello all, im using the code below now to extract table of contents from a html page. it extracts the data which is available after the <table> tag. but what i need is to get the result which appear as though it appear on that html page. [i need the …
is it possible to read the status bar notifications programmatically? if its possible means how can i do that? pls need immediate replies.. ur replies will help me in my project. thanks.
im trying to download a file ... when i use this code first [CODE] response.AddHeader("Content-Disposition", "attachment;filename=\"" + Server.MapPath(strURL) + "\""); byte[] data = req.DownloadData(Server.MapPath(strURL)); [/CODE] it shows the error " The name 'Server' does not exist in the current context d:\proj\fledwnld\fledwnld\Form1.cs " then i do google search regarding this and …
i ve gone through a link while dong google search to handle the dialog boxes prompts in web browser control..this is the link. [url]http://www.codeproject.com/KB/dialog/WindowInterceptor.aspx?display=Print[/url] and i ve tried like this, [CODE] namespace intercept { [DllImport("User32.dll")] public class WindowInterceptor { IntPtr hook_id = IntPtr.Zero; Win32.Functions.HookProc cbf; /// <summary> /// Delegate to …
hello all, i just searched via google and found a set of codes to login to a web site using httpwebrequest. but whenever i tried using the codes i got the very same exception that The remote server returned an error: (407) Proxy Authentication Required. one of the sample code …
hello all, i want to save the web page content into a database. how can i fetch data from that website and save into a sql database. im using c# as front end. need help. expecting reply soon since it needed for my project. thanks.
hi, i know tat enter and f1 keys can be pressed programmatically using "SendKeys" function. but now i just want to know whether it is possible to press the alphabet 'S' in the keyboard programmatically. Expecting reply. thanks.
hi, i have a form in which there are two buttons.. i ve written code for the button 1 and button 2 in the click event. now i want to click button 2 programmtically. that is when button1 is clicked it should execute the set of coding also it should …
hello all, im a student and doing a project to automate a process. For which i ve to download files from clients site.. my doubt is can zip files be stored in sql database. if its possible means how can i achieve this.. need help! good day.
hi, i want to programmatically click a link on a asp.net web site. first i ve navigated to that website and i ve got a code from some other website [CODE]For i As Integer = 0 To Me.WebBrowser1.Document.Links.Count - 1 If Me.WebBrowser1.Document.Links(i).InnerHtml.StartsWith("Learn HTML") Then Me.WebBrowser1.Document.Links(i).InvokeMember("Click") End If Next[/CODE] but i …
hi, i just need to 1.navigate to the daniweb forums page and then click the memberlogin img via program 2.then i ve to fill the username and password of my account 3. then to click the 'go' button to login into the forum via program i tried to do this …
hi, im trying to automate a click on a link using javascript for which i have to navigate to a website first and then trigger a click on a link present there. for example i ve mentioned the [url]http://www.bing.com[/url] here and after navigating to bing home page it should automatically …
hi, im in a project of automating a process. for which i ve to search for a paticular word in an asp.net website and then i ve to click the button in the same row to download a file. i ve to automate this process. when i saw the view …
hi, im new here. i ve a project to automate a process. for which i ve to navigate to a asp.net web page automatically and then to click a link on that navigated page. im in need of asp.net code to do this. i ve tried like this [code] <html> …
hi, im new here. i ve a project to automate a process. for which i ve to navigate to a asp.net web page automatically and then to click a link on that navigated page. im in need of asp.net code to do this. i ve tried like this <html> <head> …
The End.
khan17