Click here to Skip to main content
15,887,746 members
Home / Discussions / C#
   

C#

 
AnswerRe: manage network printers Pin
Gerry Schmitz20-Feb-15 13:05
mveGerry Schmitz20-Feb-15 13:05 
AnswerRe: manage network printers Pin
Mohammad Reza Valadkhani21-Feb-15 1:53
professionalMohammad Reza Valadkhani21-Feb-15 1:53 
Questiontextbox63 stays empty Pin
masterofc18-Feb-15 23:08
masterofc18-Feb-15 23:08 
AnswerRe: textbox63 stays empty Pin
OriginalGriff18-Feb-15 23:16
mveOriginalGriff18-Feb-15 23:16 
AnswerRe: textbox63 stays empty Pin
masterofc18-Feb-15 23:28
masterofc18-Feb-15 23:28 
GeneralRe: textbox63 stays empty Pin
OriginalGriff18-Feb-15 23:30
mveOriginalGriff18-Feb-15 23:30 
GeneralRe: textbox63 stays empty Pin
masterofc19-Feb-15 0:28
masterofc19-Feb-15 0:28 
QuestionHep me to create signup windows app Pin
Member 1141361218-Feb-15 22:49
Member 1141361218-Feb-15 22:49 
Hello,
I have html source code of a page from that source code i want to make signup windows application in c#

Source :

<!DOCTYPE html><!-- this MUST be first line -->
<html>
<head>
<title>MAD</title>
</head>
<body>
<form action='http://register.abc.com/register' method='post' id='cI' enctype='text/plain'>
<!-- hidden fields: -->
<input name='s' value="" type='hidden'/>
<input name='did' value='MIDP' type='hidden'/>
<input name='pid' value='abc' type='hidden'/>
<input name='cid' value='abc' type='hidden'/>
<input name='l' value='en' type='hidden'/>
<!-- visible fields: -->
<p>
<b>USERNAME</b><br>
<input name='un' value=''/>
</p><p>
<b>PASSWORD</b><br>
<input name='pw' value='password'/>
</p><p>
<img id="CAPTCHA" src="" /> <input type="button" id="regen" value="REFRESH CAPTCHA" />
</p><p>
<b>CAPTCHA</b><br/>
<input name='c' >
<br/><br/>
<input name='send' value=' CREATE ' type='submit'>
</p>
</form>

<script type="text/javascript">
var dids = ["MIDP","ANDROID","WINDOWS","BlackBerry","SYMBIAN","MAC","WP","LINUX","IPHONE","WM"];
var curdid = 0;

function createCaptcha()
{
var chars ="0123456789ABCDEFGHIJKLMNOPQRSTUVWXTZ"
+ "abcdefghiklmnopqrstuvwxyz";
var str = "";
for (var i=0; i<10; i++)
{
str += chars[ Math.floor( Math.random() * chars.length ) ];
}
var form = document.getElementById("cI");
form.s.value = str;
document.getElementById("CAPTCHA").src =
'http://register.abc.com/init?w=120&h=40&f=png&s=' + str;

form.did.value = dids[curdid];
curdid = ( curdid + 1 ) % dids.length;
}

// generate initial CAPTCHA strings:
createCaptcha( );

document.getElementById("regen").onclick = createCaptcha;
</script>
</body>
</html>


I must do parse html in c# i think ?
I dont know actually how to start
Please help ... Smile | :)
AnswerRe: Hep me to create signup windows app Pin
OriginalGriff18-Feb-15 23:09
mveOriginalGriff18-Feb-15 23:09 
AnswerRe: Hep me to create signup windows app Pin
Pete O'Hanlon18-Feb-15 23:27
mvePete O'Hanlon18-Feb-15 23:27 
Questionabout dynamic form and controls, database fields created by user throw c sharp .net windows application Pin
Muthuraj.M18-Feb-15 18:35
Muthuraj.M18-Feb-15 18:35 
AnswerRe: about dynamic form and controls, database fields created by user throw c sharp .net windows application Pin
OriginalGriff18-Feb-15 21:44
mveOriginalGriff18-Feb-15 21:44 
AnswerRe: about dynamic form and controls, database fields created by user throw c sharp .net windows application Pin
Richard MacCutchan18-Feb-15 22:04
mveRichard MacCutchan18-Feb-15 22:04 
QuestionWcf Service connection to SQL Database Pin
happyghoos18-Feb-15 12:21
happyghoos18-Feb-15 12:21 
Question[Solved] MySQL dataGridView search function problem Pin
Linus Agren18-Feb-15 9:47
Linus Agren18-Feb-15 9:47 
AnswerRe: MySQL dataGridView search function problem Pin
Ron Nicholson18-Feb-15 10:00
professionalRon Nicholson18-Feb-15 10:00 
GeneralRe: MySQL dataGridView search function problem Pin
Linus Agren19-Feb-15 4:56
Linus Agren19-Feb-15 4:56 
QuestionDataGridView et oracle Pin
youssefcss18-Feb-15 5:32
youssefcss18-Feb-15 5:32 
SuggestionRe: DataGridView et oracle Pin
Richard MacCutchan18-Feb-15 5:41
mveRichard MacCutchan18-Feb-15 5:41 
QuestionFast Image Stitching Pin
JBHowl18-Feb-15 5:03
JBHowl18-Feb-15 5:03 
AnswerRe: Fast Image Stitching Pin
Ravi Bhavnani18-Feb-15 5:12
professionalRavi Bhavnani18-Feb-15 5:12 
GeneralRe: Fast Image Stitching Pin
JBHowl18-Feb-15 5:21
JBHowl18-Feb-15 5:21 
GeneralRe: Fast Image Stitching Pin
Eddy Vluggen18-Feb-15 5:45
professionalEddy Vluggen18-Feb-15 5:45 
GeneralRe: Fast Image Stitching Pin
JBHowl18-Feb-15 9:00
JBHowl18-Feb-15 9:00 
GeneralRe: Fast Image Stitching Pin
Eddy Vluggen18-Feb-15 9:26
professionalEddy Vluggen18-Feb-15 9:26 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.