Web Forms :: How To Open Page In New Tab Using ImageButton OnClick Event
May 7, 2015
I have 1 image button and Linkbutton in my page below is code:
<asp:ImageButton ID="ImageButton2" runat="server" ImageUrl="~/image/editpro.png"
CssClass="DMPIMG" OnClick="ImageButton2_Click" OnClientClick="return ValidateRange()" />
and Linkbutton:
<asp:LinkButton ID="LinkproM" runat="server" CssClass="Links3" OnClick="LinkproM_Click"
CausesValidation="false">مدیریت محصولات</asp:LinkButton>
I want when I click on imagebutton it open page in new window so I wrote below code:
<script type="text/javascript">
function ValidateRange() {
document.forms[0].target = "_blank";
return true;
}
</script>
and I want when I click on linkbutton it doesn't open new window...
here when I click on linkbutton it doesn't open new window it is correct but when I click on imagebutton and it opens new window and back to page and click on linkbutton it open linkbutton in new window...
I want when I click on link button it doesn't open new window any way...
View 1 Replies
Similar Messages:
Jan 7, 2011
I have an imagebutton with an postbackurl and an onclientclick script. When i added the onclientclick code, if my javascript validation passes (aka returns true), the page just seems to perform a postback (the screen just seems to refresh
<asp:ImageButton ID="imgSendInfo" runat="server" SkinID="SendInfo" PostBackUrl="MyUrlOnAnotherSite" onClientClick="javascript:return onFormSubmit(this.form);return document.MM_returnValue" />
I decided to change what JS functions Im calling now since calling Multiple functions definately wasnt helping. Here's my updated code. All Im doing now is validating a single textbox and returning true or false. Even this simple function is causing the postback URL to never get called. Could it have anything to do with the fact that Im trying to call a function to return a true or false?
View 2 Replies
Feb 1, 2011
ive imagebuttons which created in runtime from database and i need to add them onclick or mouseover event but i failed imagebutton.click += new ImageClickEventHandler(imageButton_Click); im adding this when i created imagebuttons, what i need else also i tried javascript but its not firing too;
<script type="text/javascript">
function SetProductImage(imgID) {
document.getElementById('imgProduct').src=document.getElementById(imgID).src;
}
</script>
imgProductImage.Attributes["onclick"] = "javascript:SetProductImage('" + imgProductImage.ID + "')";
View 3 Replies
Jun 29, 2010
i have a navigation bar made up of ImageButtons that have their image swapped out on mouse over and back on mouse out. i used this code in the Page_Load handler to do this:
ImageButton1.Attributes.Add("OnMouseOver", "this.src='mouseover.gif'")
ImageButton1.Attributes.Add("OnMouseOut", "this.src='mouseout.gif'")
what i'm trying to do now is get the mouseover image to load when you click the button and are taken to the page. i tried this but it doesn't work:
ImageButton1.Attributes.Add("OnClick", "this.src='mouseover.gif'")
View 1 Replies
Mar 4, 2010
I have a gridview which is bound to a dataset. I have placed several template fields in the grid with the following type of setup
HTML Code:
<asp:TemplateField>
<HeaderTemplate>
<asp:Label ID="Label1" runat="server" Text="File"></asp:Label>
<asp:ImageButton AlternateText="ASC" ID="imgASC" Width="10" Height="10"
ImageUrl="~/Modules/Interface/ASC.gif"
CommandArgument="eFolder ASC" runat="server" OnCommand="ImageButton_Command" />
<asp:ImageButton AlternateText="DESC" ID="imgDESC" Width="10" Height="10"
ImageUrl="~/Modules/Interface/DESC.gif"
CommandArgument="eFile DESC" runat="server" OnCommand="ImageButton_Command" />
</HeaderTemplate>
<ItemTemplate>
<asp:Label ID="Label1" runat="server" Text='<%# Eval("eFileName") %>'></asp:Label>
</ItemTemplate>
</asp:TemplateField>
on the code page I have mapped the OnCommand event to the following code
Code:
Protected Sub ImageButton_Command(ByVal sender As Object, _
ByVal e As System.Web.UI.WebControls.CommandEventArgs)
Try
Dim img As ImageButton = CType(sender, ImageButton)
img.BorderStyle = BorderStyle.Ridge
SortOrder = e.CommandArgument
BindData()
Catch exc As Exception
ProcessModuleLoadException(Me, exc)
End Try
End Sub
My problem is that by clicking on the image button in the gridview header, the OnCommand event is not being fired. I have tried this with both OnClick and OnCommand and neither fires. I can't see what I am doing wrong if anything.
View 6 Replies
Sep 29, 2010
In parent page there is an imagebutton. What I want to when user click this image button, another page will open with width=200 and height=100 with no toolbar.
View 11 Replies
Feb 25, 2010
How do I setup a default setting so that if I do not set an OnClick (i.e the asp.net OnClick attribute) explicitly for an asp:LinkButton tag, it will not render an onclick(html attribute for javascript) attribute client side? By default, asp.net adds an onclick='doPostBack....' for the LinkButton.
Case for use:
There is a LinkButton tag on the page. For this page, if the user has one friend, I only want to run client side code if the button is clicked and would not for any reason want to make a post back. If the user has more than one friend I would want a click to trigger a postback.
Using any asp.net Ajaxtoolkit
Dynamically switching the control type (i.e. if friends == 1 use a asp:Hyperlink)
-I want to avoid this because it is not scalable. There might be many cases where I want an asp:Link tag to do a postback or to not do a postback depending on the user context or user attributes Using OnClientClick (I am using jQuery would like to avoid this)
View 2 Replies
Dec 13, 2010
I have a gridview on Contacts.aspx. From this page, I want an "Add New Contact" ImageButton to open the Formview in the ContactDetails.aspx page in Insert mode....
I'm in VB2010 in C#
View 5 Replies
Sep 18, 2010
I created an image button called "pic1" with the OnClick feature. When clicked it runs "btnClicked". In the sub "btnClick", how would I get information? One example is to get the button tooltip. I tried this: request.form.item("pic1.tooltip"). That did not work.
View 9 Replies
Sep 11, 2010
Click imagebutton open window.open in class asp.net 2.0
View 2 Replies
Nov 17, 2010
Why isn't the image displayed? The folder images is in the same folder as the .aspx file.Why doesn't it invoke the ImageButton1_Click method when I click on the image? The OnClick should be for the server side.The ImageButton1_Click method takes 2 parameters, but why OnClick does not require 2 parameters?
<asp:ImageButton
ID="ImageButton1"
runat="server"
ImageUrl="images/export.gif"
OnClick="ImageButton1_Click"
/>
protected void ImageButton1_Click(object sender, ImageClickEventArgs e)
{
Label1.Text = "You've clicked the image button.";
}
I have to add this line to the Page_Load method in order for it to invoke the ImageButton1_Click method when I click on the image, why?
ImageButton1.Attributes.Add("onclick",
"ImageButton1_Click()");
This line works fine too:
ImageButton1.Attributes.Add("onclick",
"ImageButton1_Click('report.xls', GridView1)");
The 2 parameters are: object sender, ImageClickEventArgs e. What are they and why I pass in a string and a gridview, which I don't think match with the arguments definition, and it still works?
View 13 Replies
Dec 2, 2010
If I use an ImageButton or LinkButton, I just noticed that when clicking either, the Page_Load method executes before the method specified in the OnClick. Can this be avoided so that the method in the OnClick is triggered instead of Page_Load?
View 2 Replies
Mar 25, 2011
If Not IsDBNull(ds.Tables(0).Rows(0)("url")) Then
If ds.Tables(0).Rows(0)("haslink") = True Then
web1.PostBackUrl = ds.Tables(0).Rows(0)("url")
[Code]....
if True is returned then onclick of button WEB1 the user should be redirected to url returned from db and should open in new windwo.
whereas if i get FALSE,then url must be open in same window..
is my code correct withhrespect to redirecting user to the url? and how do i implement to opening in newwindow thing?
View 13 Replies
Feb 11, 2011
I have a page that uses a master page. The following code only shows the bare minimum of the page:
[Code]....
Code-behind:
[Code]....
The [Code]....
My guess is that it may releated to the ID's that are recreated.
View 14 Replies
May 1, 2010
i have n image button with an event:
[Code]....
when i click the button the page refreshs.. is it possible to make the event heppen without refreshign the page?
View 16 Replies
Feb 8, 2010
I want to add javascript onclick event on each page number in datagrid paging.
View 5 Replies
Oct 21, 2010
I have used jQuery to invoke an AJAX webmethod in c#. This webmethod runs a query and stores the resulting information in a session variable. I have a gridview that has an objectdatasource that uses the session variable with the selectmethod to then populate the gridview with data from a query. I need the final piece to get the gridview to databind() again with the new value.
So click map, update gridview. However, maybe I'm going about this all wrong. In essence, take javascript variable, push to ASP.NET in C# and refresh gridview on page with new data from query.
View 1 Replies
Oct 21, 2010
I extended an ImageButton control and its image is changing as expected, but its OnClick is not firing.
[Code]....
View 3 Replies
Mar 9, 2010
I am using an Imagebutton to open a webpage. This code works but what I wonder is if it is possible to have a new browserwindow opened with yahoo.com instead of
that the current browser is entering yahoo.com ?
<
asp:ImageButton
ID="ImageButton1"
runat="server"
Height="86px"
ImageUrl="~/a/b/c/d.bmp"
Width="324px"
PostBackUrl="http://www.yahoo.com"
/>
View 8 Replies
Jan 28, 2010
well i have already created the rows and cells dynamically using asp.net table control ...but how to add an onclick event on that ...so that i could retrieve the corresponding cell when a particular row is clicked ...if it was a html control ,i could have used javascript but in this particular case m unable to find any solution..
View 2 Replies
Nov 19, 2010
how will open an image in new window from imagebutton' s postbackurl on onclick of image..
View 4 Replies
Oct 13, 2010
what're the differences between onclick event and oncommand event?
View 2 Replies
Mar 6, 2010
I am trying to open a new window on a button click event. I have seen several similar threads on this topic, but none worked for what I am trying to do.What I am trying to do...
- select an item from a dropdownlist
- click a button
- on the button click, open a new window (preferably 500 x 600) and go to a url based upon the selected ddl item
What is actually happening...
- a new tab is opening
Here is the .aspx
[Code]....
When the user selects an item in the dropdownlist and then presses the button, a new window opens and goes to a url based upon the selecteditem in the dropdown list. For example, if the user selects "10" from the ddl, then pressing the button should open a new window and go to ~/NewPage.aspx?id=ref#10
Here is the .aspx.cs
[Code]....
Rather than opening a new window, it opens a new tab (in Firefox). How do I get it to open a new window? I would prefer to open a window that is about 500 x 600 and has no menu or scroll bars.I would prefer to not use javascript because of the pop-up blocker in IE. (see an example here at my blog for an example why - clicking on "reply to this post" doesn't work in IE because I used javascript, but it works in all other browsers).
Note: You may notice that I repeat the same code in the ddl selectedindexchanged event and the button click event. This is because only placing it in the button click event required two clicks (the first only sets the attribute). I couldn't figure out any other way to do it. If you know a better way, feel free to suggest one and I will mark it as an answer if it works. But, my real concern is the question about opening a new window.
View 3 Replies
Mar 7, 2010
I try to add a new ImageButton to my panel in a dynamic way -when the user click on button in the page.When i create the ImageButton i register to the click event.when the page load - i can to see the ImageButton but when i click on him is not fire the event.
[Code]....
[Code]....
View 2 Replies
Oct 5, 2010
I know this question has been asked before. But for some reason I can't find the exact answer I need for my problem. My problem is as follows:
I am creating a web page (The one posted is just an easy example) that creates multiple ImageButtons on one page via a loop.I have tried many other ways (for example, create instance in form_load and pass to the WriteHtml() method) but I can't figure out a way to complete this. In this example I have 10 buttons that need to be able to be clicked.
The code is as follows:
[Code]....
View 4 Replies