1
Answer

Attachment Browse button not shown in Web Browser control C#

Karthi Keyan

Karthi Keyan

7y
232
1
Hi guys,
 
   I am developing a automation tool in c# using Webbrowser. while i open the url in chrome or IE , it showing the attachment browse button. but while open the same link in the WebBrowser Control it's not showing. I tried the other websites, that's are showing the browse button. what is the problem in this. is it the Webpage issue or the Webbrowser issue?  is my explanation not clear kindly see the attachment.
 
 

Attachment: Attachment.zip

Answers (1)
0
Jaganathan Bantheswaran

Jaganathan Bantheswaran

NA 21.9k 2.2m 13y
Hi,

In xxxx.xaml.cs,

1) Create a DataTable object to which than we will bind the GridView
DataTable dt=new DataTable();

2) IF you need two columns than create two DataColumn object
DataColumn dCol1=new DataColumn(FirstC, typeof(System.String)); // string FirstC="column1?
DataColumn dCol2=new DataColumn(SecondC, typeof(System.String)); // string SecondC="column2?

Add it to the table

dt.Columns.Add(dCol1);
dt.Columns.Add(dCol2);

3)Run the loop for as many rows you want to add.

// say you want to add two rows

for(int i=0;i<2;i++)
{
DataRow row1 = dt.NewRow();
row1 [FirstC] = "One";
row1 [SecondC] ="Two"
dt.Rows.Add(row1 );

}

Now iterate through each datacolumn and create a BoundField foreach column

foreach (DataColumn col in dt.Columns)
{
BoundField bField = new BoundField
bField.DataField = col.ColumnName;
bField.HeaderText = col.ColumnName;
GridView1.Columns.Add(bField);
}
GridView1.DataSource = dt;
//Bind the datatable with the GridView.
GridView1.DataBind();