Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+4
Strength to Decrease Rep
-1
22% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
6
Posts with Downvotes
6
Downvoting Members
2
2 Commented Posts
0 Endorsements
~12.5K People Reached
Favorite Tags
Member Avatar for khan17

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 …

Member Avatar for vivekastle
0
1K
Member Avatar for manjulabai
Member Avatar for brianmaddox
-1
521
Member Avatar for khan17

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, …

Member Avatar for AnkTush
0
134
Member Avatar for khan17

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 …

Member Avatar for Julodnik
1
138
Member Avatar for khan17

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 …

Member Avatar for mcriscolo
0
145
Member Avatar for khan17

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 …

Member Avatar for khan17
0
1K
Member Avatar for khan17

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 …

Member Avatar for mcriscolo
0
100
Member Avatar for khan17

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 …

Member Avatar for khan17
-1
131
Member Avatar for khan17

hello, is it possible to sign out from the website programmatically.. if possible means how can i? thanks in advance

Member Avatar for khan17
-1
189
Member Avatar for khan17

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 …

Member Avatar for khan17
0
103
Member Avatar for khan17

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.

Member Avatar for Alexpap
0
49
Member Avatar for khan17

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 …

Member Avatar for kvprajapati
0
441
Member Avatar for khan17

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 …

Member Avatar for kvprajapati
0
184
Member Avatar for khan17

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 …

Member Avatar for khan17
0
157
Member Avatar for khan17

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.

Member Avatar for Mohtshm
0
114
Member Avatar for khan17

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.

Member Avatar for ddanbe
0
145
Member Avatar for khan17

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 …

Member Avatar for khan17
0
2K
Member Avatar for khan17

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.

Member Avatar for Salem
0
61
Member Avatar for khan17

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 …

Member Avatar for khan17
0
489
Member Avatar for khan17

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 …

Member Avatar for khan17
0
82
Member Avatar for khan17

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 …

0
44
Member Avatar for khan17

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 …

0
73
Member Avatar for khan17

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> …

Member Avatar for Geekitygeek
-1
183
Member Avatar for anakanya

I have an html page with a random url that I want to be clicked programmatically in javascript [code="javascript"] <html> <head> <script> function ClickURL() { document.getElementById('xyz').click(); } </script> </head> <body onLoad="ClickURL()"> <a href="www.somewebsite.com" id="xyz">Link </a> </body> </html> [/code] This only works in IE - it does not work in FireFox. …

Member Avatar for almostbob
0
4K