Click here to Skip to main content
15,890,512 members
Home / Discussions / C#
   

C#

 
GeneralRe: Declare the type of cell of DevExpress GridView ? Pin
Member 245846715-Feb-15 19:49
Member 245846715-Feb-15 19:49 
GeneralRe: Declare the type of cell of DevExpress GridView ? Pin
Dave Kreskowiak16-Feb-15 2:41
mveDave Kreskowiak16-Feb-15 2:41 
GeneralRe: Declare the type of cell of DevExpress GridView ? Pin
Member 245846716-Feb-15 16:53
Member 245846716-Feb-15 16:53 
GeneralRe: Declare the type of cell of DevExpress GridView ? Pin
Dave Kreskowiak16-Feb-15 17:56
mveDave Kreskowiak16-Feb-15 17:56 
QuestionAny examples on using libsodium-net , saving keypairs, encrypt/decrypt files? Pin
vizimuchi11-Feb-15 8:32
vizimuchi11-Feb-15 8:32 
AnswerRe: Any examples on using libsodium-net , saving keypairs, encrypt/decrypt files? Pin
Afzaal Ahmad Zeeshan11-Feb-15 9:23
professionalAfzaal Ahmad Zeeshan11-Feb-15 9:23 
GeneralRe: Any examples on using libsodium-net , saving keypairs, encrypt/decrypt files? Pin
vizimuchi11-Feb-15 16:01
vizimuchi11-Feb-15 16:01 
QuestionHow can I open a webpage in IE and fill in 1 or more text boxes in the page? Pin
turbosupramk311-Feb-15 2:14
turbosupramk311-Feb-15 2:14 
This is my first time trying to do anything more than open a webpage as a process.

I'd like to open a page in IE and then fill in a text box with the id being shown below in the small code snippet.

I think I can use WebRequest for this, but I've tried a few code samples I found online and it does not open the webpage in IE, so I'm not sure where to start to get a simple example working and build off of it.

XML
<div class="formControl"><input name= "username" id= "txtlogin" maxlength= "75" placeholder= "Username" size= "25" type= "text" class= ""  />
</div>



XML
<html style="height: 100%;">

<HEAD>
    <meta http-equiv="x-ua-compatible" content="IE=Edge"/>
    <meta http-equiv="X-UA-Compatible" content="chrome=1" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Employee Self Service Login</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <meta name="robots" content="noindex">






    <script src="js/jquery-1.10.2.min.js"></script>
    <script src="js/jquery-ui-1.10.3.custom.min.js"></script>





</HEAD>
<BODY style="height: 100%;">




        Employee Self-Service



        <form method= "POST" action= "ee-loginproc.php" name= "frmEELogin" class= "" >

                                                <label class="standard" for="username">

                                                    Username
                                                </label>

                                                <input name= "username" id= "txtlogin" maxlength= "75" placeholder= "Username" size= "25" type= "text" class= ""  />




                                                <label class="standard" for="userpass">

                                                    Password
                                                </label>

                                                <input type= "password" name= "userpass" id= "txtpass" maxlength= "40" placeholder= "Password" autocomplete= "off" size= "25" class= ""  />




                                                <label class="standard" for="userpin">

                                                    Last 4 digits of SSN
                                                </label>

                                                <input name= "userpin" id= "userpinid" type= "password" maxlength= "4" placeholder= "Last 4 digits of SSN" size= "25" class= ""  />



                                                <input size= "1" type= "submit" value= "Log in" name= "submit" id= "submit" class= "buttonPrimary"  />


Forgot Password</form>












<script src="js/modernizr.js"></script>
<script src="../cl/js/pcm_cl_cust.js"></script>
<script>
    $(document).ready(function(){
        $("#txtlogin").focus();
    });

</script>
</body>
</html>

AnswerRe: How can I open a webpage in IE and fill in 1 or more text boxes in the page? Pin
turbosupramk311-Feb-15 6:31
turbosupramk311-Feb-15 6:31 
GeneralRe: How can I open a webpage in IE and fill in 1 or more text boxes in the page? Pin
Eddy Vluggen11-Feb-15 7:33
professionalEddy Vluggen11-Feb-15 7:33 
GeneralRe: How can I open a webpage in IE and fill in 1 or more text boxes in the page? Pin
turbosupramk311-Feb-15 7:42
turbosupramk311-Feb-15 7:42 
GeneralRe: How can I open a webpage in IE and fill in 1 or more text boxes in the page? Pin
Eddy Vluggen11-Feb-15 7:59
professionalEddy Vluggen11-Feb-15 7:59 
GeneralRe: How can I open a webpage in IE and fill in 1 or more text boxes in the page? Pin
turbosupramk311-Feb-15 8:25
turbosupramk311-Feb-15 8:25 
GeneralRe: How can I open a webpage in IE and fill in 1 or more text boxes in the page? Pin
turbosupramk311-Feb-15 8:58
turbosupramk311-Feb-15 8:58 
GeneralRe: How can I open a webpage in IE and fill in 1 or more text boxes in the page? Pin
Eddy Vluggen12-Feb-15 5:46
professionalEddy Vluggen12-Feb-15 5:46 
GeneralRe: How can I open a webpage in IE and fill in 1 or more text boxes in the page? Pin
turbosupramk312-Feb-15 8:51
turbosupramk312-Feb-15 8:51 
QuestionRe: How can I open a webpage in IE and fill in 1 or more text boxes in the page? Pin
Eddy Vluggen12-Feb-15 11:35
professionalEddy Vluggen12-Feb-15 11:35 
AnswerRe: How can I open a webpage in IE and fill in 1 or more text boxes in the page? Pin
turbosupramk313-Feb-15 1:55
turbosupramk313-Feb-15 1:55 
GeneralRe: How can I open a webpage in IE and fill in 1 or more text boxes in the page? Pin
turbosupramk313-Feb-15 2:04
turbosupramk313-Feb-15 2:04 
GeneralRe: How can I open a webpage in IE and fill in 1 or more text boxes in the page? Pin
Eddy Vluggen13-Feb-15 3:03
professionalEddy Vluggen13-Feb-15 3:03 
GeneralRe: How can I open a webpage in IE and fill in 1 or more text boxes in the page? Pin
turbosupramk313-Feb-15 3:27
turbosupramk313-Feb-15 3:27 
GeneralRe: How can I open a webpage in IE and fill in 1 or more text boxes in the page? Pin
Eddy Vluggen13-Feb-15 5:07
professionalEddy Vluggen13-Feb-15 5:07 
AnswerRe: How can I open a webpage in IE and fill in 1 or more text boxes in the page? Pin
Rahul Anand Jha14-Feb-15 5:17
Rahul Anand Jha14-Feb-15 5:17 
GeneralRe: How can I open a webpage in IE and fill in 1 or more text boxes in the page? Pin
turbosupramk314-Feb-15 8:35
turbosupramk314-Feb-15 8:35 
QuestionC# app.config modification/replacement on install Pin
Member 1133483710-Feb-15 19:43
Member 1133483710-Feb-15 19:43 

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.