Click here to Skip to main content
15,899,679 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: display a splash screen Pin
varun.g20-Apr-08 21:46
varun.g20-Apr-08 21:46 
Questionjava script working problem Pin
Ajeet mittal19-Apr-08 2:32
Ajeet mittal19-Apr-08 2:32 
GeneralRe: java script working problem Pin
Blue_Boy19-Apr-08 5:05
Blue_Boy19-Apr-08 5:05 
QuestionDownloadign MSI Pin
M. J. Jaya Chitra19-Apr-08 2:24
M. J. Jaya Chitra19-Apr-08 2:24 
GeneralRe: Downloadign MSI Pin
Sam Xavier22-Apr-08 20:04
Sam Xavier22-Apr-08 20:04 
GeneralPassing Parameters in buttonclick event in gridview Pin
needhi_p19-Apr-08 1:48
needhi_p19-Apr-08 1:48 
GeneralRe: Passing Parameters in buttonclick event in gridview Pin
Krazy Programmer19-Apr-08 2:01
Krazy Programmer19-Apr-08 2:01 
GeneralRe: Passing Parameters in buttonclick event in gridview Pin
samMaster19-Apr-08 18:34
samMaster19-Apr-08 18:34 
Hi Test this: addtocrt_Click(Eval("Prod_ID").ToString())

You can pass the parameters in this way too:

<asp:imagebutton id="addtocrt" runat="server" imageurl="images/addtocart.jpg" alternatetext="Add to Cart" width="42" height="42" hspace="2">CommandArgument='<%# Eval("Prod_ID") %>' onclick="addtocrt_Click">

protected void addtocrt_Click(object sender, EventArgs e)
{
try
{
ImageButton imgbtn = sender as ImageButton;

Response.Write(imgbtn.CommandArgument);
}
catch (Exception ex)
{
throw;
}
}
GeneralRe: Passing Parameters in buttonclick event in gridview Pin
needhi_p20-Apr-08 20:09
needhi_p20-Apr-08 20:09 
Generalcounting the chearacters in textbox client side Pin
rajkumar.319-Apr-08 1:17
rajkumar.319-Apr-08 1:17 
GeneralRe: counting the chearacters in textbox client side Pin
Blue_Boy19-Apr-08 1:29
Blue_Boy19-Apr-08 1:29 
QuestionHow i can show my items by default without filter on one of dropdownlists? Pin
Saba0219-Apr-08 0:56
Saba0219-Apr-08 0:56 
GeneralRe: How i can show my items by default without filter on one of dropdownlists? Pin
Blue_Boy19-Apr-08 1:34
Blue_Boy19-Apr-08 1:34 
GeneralRe: How i can show my items by default without filter on one of dropdownlists? Pin
rajkumar.319-Apr-08 1:39
rajkumar.319-Apr-08 1:39 
GeneralRe: How i can show my items by default without filter on one of dropdownlists? Pin
Blue_Boy19-Apr-08 2:22
Blue_Boy19-Apr-08 2:22 
Questionhow to get <div> </div> string Pin
sugunavathysubramanian19-Apr-08 0:40
sugunavathysubramanian19-Apr-08 0:40 
AnswerRe: how to get string Pin
Guffa19-Apr-08 5:05
Guffa19-Apr-08 5:05 
Questionconfused ! Pin
Krazy Programmer19-Apr-08 0:16
Krazy Programmer19-Apr-08 0:16 
QuestionRestrict Pages......????? Pin
Syed Naushad S18-Apr-08 23:44
professionalSyed Naushad S18-Apr-08 23:44 
GeneralRe: Restrict Pages......????? Pin
ArunVijay19-Apr-08 17:53
ArunVijay19-Apr-08 17:53 
QuestionRe: Restrict Pages......????? Pin
Syed Naushad S20-Apr-08 21:27
professionalSyed Naushad S20-Apr-08 21:27 
AnswerRe: Restrict Pages......????? Pin
samMaster22-Apr-08 20:32
samMaster22-Apr-08 20:32 
QuestionHow to call javascript function when certain condition is true Pin
rahul.net1118-Apr-08 23:24
rahul.net1118-Apr-08 23:24 
GeneralRe: How to call javascript function when certain condition is true Pin
Krazy Programmer19-Apr-08 0:24
Krazy Programmer19-Apr-08 0:24 
QuestionLayout(Absolutely position) Pin
ksaw12318-Apr-08 23:01
ksaw12318-Apr-08 23:01 

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.