Click here to Skip to main content
15,868,030 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Back Page link with Attachment asp.net 4 Pin
εїзεїзεїз19-Nov-12 21:29
εїзεїзεїз19-Nov-12 21:29 
GeneralRe: Back Page link with Attachment asp.net 4 Pin
n.podbielski19-Nov-12 21:33
n.podbielski19-Nov-12 21:33 
GeneralRe: Back Page link with Attachment asp.net 4 Pin
εїзεїзεїз19-Nov-12 23:02
εїзεїзεїз19-Nov-12 23:02 
AnswerRe: Back Page link with Attachment asp.net 4 Pin
Zaf Khan26-Nov-12 9:02
Zaf Khan26-Nov-12 9:02 
GeneralRe: Back Page link with Attachment asp.net 4 Pin
εїзεїзεїз26-Nov-12 20:49
εїзεїзεїз26-Nov-12 20:49 
GeneralRe: Back Page link with Attachment asp.net 4 Pin
Zaf Khan27-Nov-12 7:55
Zaf Khan27-Nov-12 7:55 
Questioncall javascript in button1_click in bihindcode Pin
jojoba201116-Nov-12 22:22
jojoba201116-Nov-12 22:22 
NewsSOVED ! Pin
jojoba201116-Nov-12 23:28
jojoba201116-Nov-12 23:28 
I solved by adding <base target="_self" /> to of this (child) page.

my code is now this :

ASP.NET
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="GridviewGhataKhadamat.aspx.cs"
    Inherits="Tina.WebUI.WorkFlows.Forms.Khadamat.GridviewGhataKhadamat"%>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
    <script type="text/javascript">
        function Close() {
            window.close();
        }
       
        function OK(Id,Name,Code) {

            var vReturnValue = new Object();
            vReturnValue.Id = Id;
            vReturnValue.Name = Name;
            vReturnValue.Code = Code;  
            window.returnValue = vReturnValue;
            window.close();
        } 
        
    </script>
<base target=_self>
</head>
<body >
    <form id="form1" runat="server">
    <div>
       <%-- <asp:HiddenField ID="GridviewTypeT" runat="server" />--%>
        <asp:GridView ID="gvGhataKhadamat" runat="server" AutoGenerateColumns="False" BackColor="White"
            BorderColor="#CC9966" BorderStyle="Inset" BorderWidth="1px" CellPadding="4" Font-Names="Verdana">
            <FooterStyle BackColor="#FFFFCC" ForeColor="#330099" />
            <Columns>
                <asp:TemplateField HeaderText="">
                    <ItemTemplate>
                        <input name="rbGhataKhadamat" type="radio" value="<%# Eval("Id") %>,<%# Eval("Name") %>,<%# Eval("Code") %>" />
                    </ItemTemplate>
                </asp:TemplateField>
                <asp:BoundField DataField="Id" HeaderText="ID" Visible="false" />
                <asp:BoundField DataField="Code" HeaderText="<%$ Resources:Khadamat, Code %>" />
                <asp:BoundField DataField="Name" HeaderText="<%$ Resources:Khadamat, Name %>" />
            </Columns>
            <RowStyle BackColor="White" ForeColor="#330099" />
            <SelectedRowStyle BackColor="#FFCC66" Font-Bold="True" ForeColor="#663399" />
            <PagerStyle BackColor="#FFFFCC" ForeColor="#330099" HorizontalAlign="Center" />
            <HeaderStyle BackColor="#990000" Font-Bold="True" ForeColor="#FFFFCC" />
        </asp:GridView>
    </div>
    <asp:Button runat="server" ID="btnOk" Text="<%$ Resources:Khadamat, ok %>" UseSubmitBehavior="false"  OnClick="btnOk_Click"/>
    <asp:Button runat="server" ID="btnCancel" Text="<%$ Resources:Khadamat, cancel %>"
        OnClientClick="Close()" />
    </form>
</body>
</html>


and bihind code is :

C#
protected void Page_Load(object sender, EventArgs e)
        {
            DataTable dtGhataKhadamat = new DataTable();
            string strGridViewType = Request.QueryString["gridname"];
            if (strGridViewType == "Ghata")
            {
                dtGhataKhadamat = tblKhadamatBL.KalaViewSelectByCommandKhadamat("GroupKalaID=15");
                gvGhataKhadamat.DataSource = dtGhataKhadamat;
                gvGhataKhadamat.DataBind();
            }
            else if (strGridViewType == "Khadamat")
            {
                dtGhataKhadamat = tblKhadamatBL.KhadamatTypeSelectAllKhadamat();
                gvGhataKhadamat.DataSource = dtGhataKhadamat;
                gvGhataKhadamat.DataBind();
            }


        }

        protected void btnOk_Click(object sender, EventArgs e)
        {

            string[] strSelected = Request.Form["rbGhataKhadamat"].Split(new char[] { ',' });
            string jsCommand = "OK(" + "'" + strSelected[0] + "','" + strSelected[1] + "','" + strSelected[2] + "'" + ")";
            Page.ClientScript.RegisterStartupScript(GetType(), "OK", jsCommand, true);

            //ScriptManager.RegisterClientScriptBlock(Page, typeof(Button), "MyJSFunction", jsCommand, true);

            //Page.ClientScript.RegisterStartupScript(GetType(), "OK", "OK(" + "'" + strSelected[0] + "','" + strSelected[1] + "','" + strSelected[2] + "'"+");", true);
            //Page.ClientScript.RegisterStartupScript(GetType(), "OK", "OK(" + Request.Form["rbGhataKhadamat"] + ");", true);
            //btnOk.OnClientClick = "OK(" + "'" + strSelected[0] + "','" + strSelected[1] + "','" + strSelected[2] + "'" + ");";
            //ClientScript.RegisterStartupScript(GetType(), "Javascript", "javascript: OK(" + "'" + strSelected[0] + "','" + strSelected[1] + "','" + strSelected[2] + "'" + ");", true);
            //Page page = HttpContext.Current.CurrentHandler as Page;
            //page.ClientScript.RegisterClientScriptBlock(GetType(), "alert", "OK(" + "'" + strSelected[0] + "','" + strSelected[1] + "','" + strSelected[2] + "'" + ");");
            // btnOk.Attributes.Add("OnClientClick", "javascript:OK(" + "'" + strSelected[0] + "','" + strSelected[1] + "','" + strSelected[2] + "'" + ");");

        }

QuestionWhat is this doing Pin
rakeshs31215-Nov-12 22:10
rakeshs31215-Nov-12 22:10 
AnswerRe: What is this doing Pin
ZurdoDev16-Nov-12 7:41
professionalZurdoDev16-Nov-12 7:41 
QuestionBuilding DOM from xml - asp.net controls, or html controls? Pin
lvq68415-Nov-12 21:17
lvq68415-Nov-12 21:17 
AnswerRe: Building DOM from xml - asp.net controls, or html controls? Pin
jkirkerx16-Nov-12 8:13
professionaljkirkerx16-Nov-12 8:13 
GeneralRe: Building DOM from xml - asp.net controls, or html controls? Pin
lvq68418-Nov-12 22:10
lvq68418-Nov-12 22:10 
QuestionRe: Building DOM from xml - asp.net controls, or html controls? Pin
n.podbielski17-Nov-12 1:47
n.podbielski17-Nov-12 1:47 
QuestionChild config files Pin
indian14315-Nov-12 16:33
indian14315-Nov-12 16:33 
AnswerRe: Child config files Pin
jkirkerx16-Nov-12 8:54
professionaljkirkerx16-Nov-12 8:54 
Questionbind multiple XMLDataSource to one Repeater Pin
Jassim Rahma15-Nov-12 3:19
Jassim Rahma15-Nov-12 3:19 
AnswerRe: bind multiple XMLDataSource to one Repeater Pin
Anurag Gandhi15-Nov-12 21:20
professionalAnurag Gandhi15-Nov-12 21:20 
QuestionAspx control Pin
rakeshs31214-Nov-12 21:07
rakeshs31214-Nov-12 21:07 
AnswerRe: Aspx control Pin
Robert Bettinelli3-Dec-12 15:30
Robert Bettinelli3-Dec-12 15:30 
QuestionCould not load file or assembly Pin
xut244714-Nov-12 20:11
xut244714-Nov-12 20:11 
AnswerRe: Could not load file or assembly Pin
ZurdoDev16-Nov-12 7:42
professionalZurdoDev16-Nov-12 7:42 
QuestionProblem with foreach loop in MVC 3 Razor View Pin
solomon20114-Nov-12 4:09
solomon20114-Nov-12 4:09 
AnswerRe: Problem with foreach loop in MVC 3 Razor View Pin
n.podbielski14-Nov-12 6:34
n.podbielski14-Nov-12 6:34 
GeneralRe: Problem with foreach loop in MVC 3 Razor View Pin
Mayank_Gupta_28-Nov-12 15:28
professionalMayank_Gupta_28-Nov-12 15: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.