Click here to Skip to main content
15,908,618 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionHow to add a checkbox conrol to datalist or datagrid in single cell like(2,2) Pin
shames(Sam)26-Feb-08 1:08
shames(Sam)26-Feb-08 1:08 
AnswerRe: How to add a checkbox conrol to datalist or datagrid in single cell like(2,2) Pin
varshavmane26-Feb-08 1:56
varshavmane26-Feb-08 1:56 
GeneralAsp.net fromFROM keyword not found where expected Pin
Waqas Hasan26-Feb-08 0:59
Waqas Hasan26-Feb-08 0:59 
QuestionGridView FindControl.. Pin
Sasmi_Office26-Feb-08 0:53
Sasmi_Office26-Feb-08 0:53 
GeneralScrewTurn CMS [modified] Pin
ASPnoob26-Feb-08 0:30
ASPnoob26-Feb-08 0:30 
GeneralRadioButtonList not functioning Pin
codingrocks26-Feb-08 0:29
codingrocks26-Feb-08 0:29 
Questionpostback url of lik button and row bound of gridview Pin
Sonia Gupta26-Feb-08 0:10
Sonia Gupta26-Feb-08 0:10 
GeneralRe: postback url of lik button and row bound of gridview Pin
Member 336757026-Feb-08 0:22
Member 336757026-Feb-08 0:22 
HTML SIDE
------------------
<asp:templatefield headertext="Action">
<itemtemplate>
<asp:linkbutton id="LnkDetails" runat="server" text="Details" postbackurl="">




CODEBEHIND SIDE
-------------------

protected void Gridjango_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
GridViewRow Row = e.Row;
int JobID = Convert.ToInt32(Row.Cells[0].Text);
LinkButton LnkDetails = (LinkButton)Row.FindControl("LnkDetails");
string url = "Test.aspx?JobID=" + JobID;
LnkDetails.OnClientClick = "window.open('" + url + "','popup','toolbar=no,location=no,direction=no,status=no,menubar=no,scrolling=yes,resizable=no,width=400,height=450,left=200,top=50'); return false;";
}
}
GeneralYahoo IM from Classic ASP Pin
nhss25-Feb-08 23:19
nhss25-Feb-08 23:19 
GeneralRe: Yahoo IM from Classic ASP Pin
Christian Graus25-Feb-08 23:27
protectorChristian Graus25-Feb-08 23:27 
GeneralDelete directory Pin
frndjust25-Feb-08 23:17
frndjust25-Feb-08 23:17 
GeneralRe: Delete directory Pin
Christian Graus25-Feb-08 23:28
protectorChristian Graus25-Feb-08 23:28 
GeneralSet Resolution of uploaded image Pin
frndjust25-Feb-08 23:15
frndjust25-Feb-08 23:15 
GeneralRe: Set Resolution of uploaded image Pin
Christian Graus25-Feb-08 23:17
protectorChristian Graus25-Feb-08 23:17 
GeneralRe: Set Resolution of uploaded image Pin
frndjust25-Feb-08 23:22
frndjust25-Feb-08 23:22 
GeneralRe: Set Resolution of uploaded image Pin
Christian Graus25-Feb-08 23:30
protectorChristian Graus25-Feb-08 23:30 
Generalpage locking Pin
eyeseetee25-Feb-08 22:53
eyeseetee25-Feb-08 22:53 
GeneralRe: page locking Pin
Christian Graus25-Feb-08 23:03
protectorChristian Graus25-Feb-08 23:03 
GeneralRe: page locking Pin
eyeseetee25-Feb-08 23:52
eyeseetee25-Feb-08 23:52 
GeneralRe: page locking Pin
Christian Graus26-Feb-08 0:04
protectorChristian Graus26-Feb-08 0:04 
GeneralRe: page locking Pin
eyeseetee26-Feb-08 0:28
eyeseetee26-Feb-08 0:28 
QuestionSession id in URL [modified] Pin
Krazy Programmer25-Feb-08 22:40
Krazy Programmer25-Feb-08 22:40 
GeneralRe: Session id in URL Pin
Christian Graus25-Feb-08 23:03
protectorChristian Graus25-Feb-08 23:03 
QuestionFriends...How to disable our browser back button? help me please Pin
G Nathan25-Feb-08 22:06
G Nathan25-Feb-08 22:06 
GeneralRe: Friends...How to disable our browser back button? help me please Pin
Christian Graus25-Feb-08 22:28
protectorChristian Graus25-Feb-08 22:28 

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.