Hi all,
I am trying to build a program in C# \ ASP.NET that will be able to enter all my mails without login
like yahoo for example. How can I send the username and password.
Thank in Advance
Lior
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Muhanad YounisPosted Aug 12, 2005, 5:52 PM
hope it may help you;
private
void DataGrid1_ItemCommand(object source, System.Web.UI.WebControls.DataGridCommandEventArgs e){
if(e.CommandName=="catalink") // here to find the linkbutton from id{
int linkID;linkID=(
int)this.DataGrid1.DataKeys[e.Item.ItemIndex]; //to give the link button linkIDResponse.Redirect(
string.Format("~/news/default.aspx?CatID={0}",linkID));// and here i pass the parameter}
}