Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6846627
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T00:38:48+00:00 2026-05-27T00:38:48+00:00

I have a gridview which looks like ID Filename Type —————————————————– Share view 1

  • 0

I have a gridview which looks like
 

                   ID       Filename      Type
-----------------------------------------------------
Share  view        1      Tiger           .doc
share  view        2      Lion            .xls
share  view        3      dog             .ppt

When I click on view, the document will be opened and we can edit it. I want the share link to perform some specific function. If I click on share, it should ask to enter the email, and send the respective document to the email written. Ex. If i click on share where the document is tiger, that document should be sent to the email written.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T00:38:49+00:00Added an answer on May 27, 2026 at 12:38 am

    I found the solution.Here is a piece of code used.

    In gridview, for share hyperlink i used:

    <asp:TemplateField>
                            <ItemTemplate>
                                <asp:HyperLink ID="HyperLink1" runat="server" NavigateUrl='<%# DataBinder.Eval(Container.DataItem,"FileName","Share.aspx?FileName={0}" ) %>'
                                        Text="Share"></asp:HyperLink>
                           </ItemTemplate>
                          </asp:TemplateField>
    

    In share.aspx page

    string datalink;
        protected void Page_Load(object sender, EventArgs e)
        {
            this.TextBox2.Text = Request.QueryString[0];
            datalink = this.TextBox2.Text;
        }
        protected void Button1_Click(object sender, EventArgs e)
        {
            try
            {
                // Create the mail message
                string strFrom = "abcd@gmail.com";
                string strTo = TextBox1.Text;
                string strCC = TextBox3.Text;
                string strSubject = "Document shared";
                string strMsg = " The document has been shared with you. Please check the attachment.";
                string myPath = @"C:\Visual Studio 2008\Data\";
                MailMessage objMailMsg = new MailMessage(strFrom, strTo);
    
                objMailMsg.BodyEncoding = Encoding.UTF8;
                objMailMsg.Subject = strSubject;
                objMailMsg.Body = strMsg;
                objMailMsg.CC.Add(strCC);
                Attachment at = new Attachment(myPath + datalink);
                objMailMsg.Attachments.Add(at);
                objMailMsg.Priority = MailPriority.High;
                objMailMsg.IsBodyHtml = true;
    
                SmtpClient smtp = new SmtpClient();
                smtp.EnableSsl = true;
                smtp.Send(objMailMsg);
            }
            catch (Exception ex)
            {
                throw ex;
            }
    
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have gridview in my asp.net 3.5 application [C#]. Which looks like this: <asp:GridView
I have an ASP.NET GridView which has columns that look like this: | Foo
I have a asp:GridView which contains a asp:TextBox within a TemplateField. I would like
I have a GridView in which each row has a custom view. The grid
I have a view hierarchy that looks something like this: UIView (A) UIView >
WPF 3.5 I have a ListView for which the XAML looks like so <ListView
I have a GridView with custom View in it, which is a Button and
I have a simple gridview ItemTemplate that looks like this: <asp:TemplateField HeaderText=User> <ItemTemplate> <a
I have user control which looks like <div> <asp:LinkButton ID=btnShow runat=server Text=Select CausesValidation=false />
I have a Datagrid which looks as under <asp:GridView ID=dgTask runat=server Width=100% AutoGenerateColumns=False> <Columns>

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.