Click here to Skip to main content
16,005,389 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionGridView Edit through codebehind Pin
dhulipudi15-Aug-07 21:42
dhulipudi15-Aug-07 21:42 
QuestionHow to raise events while clicking a datalist item or a particular Row?? Pin
bijeshputhalath15-Aug-07 21:40
bijeshputhalath15-Aug-07 21:40 
AnswerRe: How to raise events while clicking a datalist item or a particular Row?? Pin
Michael Sync15-Aug-07 21:59
Michael Sync15-Aug-07 21:59 
GeneralRe: How to raise events while clicking a datalist item or a particular Row?? Pin
bijeshputhalath15-Aug-07 23:35
bijeshputhalath15-Aug-07 23:35 
GeneralRe: How to raise events while clicking a datalist item or a particular Row?? Pin
Michael Sync15-Aug-07 23:51
Michael Sync15-Aug-07 23:51 
GeneralRe: How to raise events while clicking a datalist item or a particular Row?? Pin
bijeshputhalath16-Aug-07 1:21
bijeshputhalath16-Aug-07 1:21 
GeneralRe: How to raise events while clicking a datalist item or a particular Row?? Pin
Michael Sync16-Aug-07 1:27
Michael Sync16-Aug-07 1:27 
GeneralRe: How to raise events while clicking a datalist item or a particular Row?? Pin
bijeshputhalath16-Aug-07 2:41
bijeshputhalath16-Aug-07 2:41 
this the target page URL:::

"http://localhost/approvedplotfinal/classified/AddView.aspx?li=search%20of%20a%20new%20plot,type=Wanted,price=5000"


My target page code like this-----------------------------------------------------------------------------
string search,type1,price;
//Session["li"].ToString();

search=Request.QueryString["li"].ToString();
type1=Request.QueryString["type"].ToString();
price=Request.QueryString["price"].ToString();
Label1.Text=search;
string sstr="select * FROM ads where AD_TITLE='"+search+"'&& AD_TYPE='"+type1+"' && PRICE='"+price+"' ";
sdr=conobj.reader(sstr);
while(sdr.Read())
{
}
----------------------------------------------------------------------------

This is the htmal part



<ItemTemplate>

<tr <%# TRJavaScript(Container) %> >
<td><asp:Button
style="display:none;"
CommandArgument='<%# DataBinder.Eval(Container.DataItem,"AD_TITLE")%>'
ID="HiddenButton" Runat="server" Text="View">
</asp:Button>

<a href="http://localhost/approvedplotfinal/classified/AddView.aspx?li=<%#DataBinder.Eval(Container.DataItem,"AD_TITLE") %>,type=<%# DataBinder.Eval(Container.DataItem,"AD_TYPE") %>,price=<%# DataBinder.Eval(Container.DataItem,"PRICE") %>">
<%# DataBinder.Eval(Container.DataItem,"AD_TITLE") %>
</a>
<%# DataBinder.Eval(Container.DataItem,"AD_TYPE") %>
<br>
<%# DataBinder.Eval(Container.DataItem,"AD_DESCRIPTION") %>
<br>
Price:
<%# DataBinder.Eval(Container.DataItem,"PRICE") %>
<br>
Location:
<%# DataBinder.Eval(Container.DataItem,"LOCATION") %>
<br>
</tr>
</ItemTemplate>
----------------------------------------------------------------------------
please help.....
i need to hit a target page with these parameters ....
thanks
Biju
GeneralRe: How to raise events while clicking a datalist item or a particular Row?? Pin
Michael Sync16-Aug-07 4:18
Michael Sync16-Aug-07 4:18 
GeneralRe: How to raise events while clicking a datalist item or a particular Row?? Pin
bijeshputhalath16-Aug-07 5:30
bijeshputhalath16-Aug-07 5:30 
GeneralRe: How to raise events while clicking a datalist item or a particular Row?? Pin
Michael Sync16-Aug-07 6:33
Michael Sync16-Aug-07 6:33 
GeneralRe: How to raise events while clicking a datalist item or a particular Row?? Pin
bijeshputhalath16-Aug-07 19:25
bijeshputhalath16-Aug-07 19:25 
GeneralRe: How to raise events while clicking a datalist item or a particular Row?? Pin
Michael Sync16-Aug-07 20:09
Michael Sync16-Aug-07 20:09 
GeneralRe: How to raise events while clicking a datalist item or a particular Row?? Pin
bijeshputhalath16-Aug-07 23:39
bijeshputhalath16-Aug-07 23:39 
GeneralRe: How to raise events while clicking a datalist item or a particular Row?? Pin
Michael Sync16-Aug-07 23:48
Michael Sync16-Aug-07 23:48 
Questionphoto gallery (urgent!) Pin
Milind Panchal15-Aug-07 21:34
Milind Panchal15-Aug-07 21:34 
AnswerRe: photo gallery (urgent!) Pin
N a v a n e e t h15-Aug-07 21:40
N a v a n e e t h15-Aug-07 21:40 
GeneralRe: photo gallery (urgent!) Pin
Milind Panchal15-Aug-07 21:42
Milind Panchal15-Aug-07 21:42 
GeneralRe: photo gallery (urgent!) Pin
Michael Sync15-Aug-07 22:02
Michael Sync15-Aug-07 22:02 
Questionhow do i Filter extensions in FileUpload Control Pin
Amit.Amit.Amit...15-Aug-07 21:22
Amit.Amit.Amit...15-Aug-07 21:22 
AnswerRe: how do i Filter extensions in FileUpload Control Pin
Michael Sync15-Aug-07 21:25
Michael Sync15-Aug-07 21:25 
AnswerRe: how do i Filter extensions in FileUpload Control Pin
N a v a n e e t h15-Aug-07 21:33
N a v a n e e t h15-Aug-07 21:33 
AnswerRe: how do i Filter extensions in FileUpload Control Pin
metallica_rock1015-Aug-07 23:09
metallica_rock1015-Aug-07 23:09 
AnswerRe: how do i Filter extensions in FileUpload Control Pin
metallica_rock1015-Aug-07 23:09
metallica_rock1015-Aug-07 23:09 
AnswerRe: how do i Filter extensions in FileUpload Control Pin
mangrovecm15-Aug-07 23:52
mangrovecm15-Aug-07 23:52 

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.