- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
18 Posted Topics
You can find more easily in repeater control For TextBox write this string str1 = ((TextBox)e.Item.FindControl("TextBox1")).Text; and for label write this ((Label)e.Item.FindControl("Label1")).Visible = true; for link write this ((LinkButton)e.Item.FindControl("LinkEdit")).Visible = true; use it it will definitively work and to view more detail on repeater control see here
Mr. Paul, To send email from the .Net page is very easy. 1.You put design page where you get user id to send newsletter and other details. From here you get every user details of email ID. 2. If you send the email from gmail SMTP them write smtp.gmail.com. then …
I didn't understand your requirement. Can you explain again.
Romil797, I read your Tread and your problem is not difficult. See in table we make id primary so to define the rows and columns uniquely. When the user enters the data just run the insert query and mention where id is @id it will help you and also check …
Scott.Atkinson, I read your problem and this is not difficult. I am giving you two codes choose which ever you like. [B]Fist in Design part :[/B] [CODE]<asp:FileUpload id="FileUploadControl" runat="server" /> <asp:Button runat="server" id="Button1" text="Upload" onclick="Button1_Click" /> <br /> <asp:Label runat="server" id="msgshow" text="Upload status: " />[/CODE] [B]Then in the code part[/B] …
<asp:Repeater ID="Repeater1" runat="server" onitemcommand="Repeater1_ItemCommand"> and for to understand exact about repeater control see here [snipped]
keyur.smith just explain your exact requirement for validation. Then we will help you better.
Just call the function your want to run when page load in post back.. i.e: if (Page.IsPostBack == false) { // Function name } or if you call it when it run after page load then if (Page.IsPostBack == true) { // function name } Just make then code in …
sraj44, you can do 1 thing with this vb code. search in google for code converter from VB to C#.Net. This will chenge your code from VB to C# in a single click. so just search and get your code.
Mr krunalkakadia, there is no code for anyone to get username and password of a person from any website unless you are some hacker or something. But there some access points to get access to the person id of his/her particular profile. e.g: email access. from here you can get …
Hello Steven, I am very happy that you are trying your best. It is very simple to do. Put your gridview in panel and textbox outside the panel. Set panel visibility false and when you press button after filling in textbox for search write (Panel1.Visible=True;). Just that.
Sir you write the whole code of your project. Just use command name and command Argument inside Detail View and bind Command Argument with Id. This will open the selected Record use select. if (e.CommandName == "change") { Response.Redirect("editworker.aspx?sid=" + e.CommandArgument); } here command name is Functioning and with query …
To use ajax you need to add ajax to your Asp.Net controls i.e ToolBox from reference and in Your project also. After in which page you are using ajax just write this line. after declaration of page <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="Default" %> <%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="asp" %> …
F6 will only show you the errors of your project and if not then Build Successfully message shows on left corner. Debug or F5 will execute your project and show you result.
You can use E-News Updater in your project and use for this Repeater control is the best in .Net. Just put Repeater control in Marquee and Upload News form database or Admin part. Bind Id if news with repeater control and then it shows the whole detail in next page. …
Your Question didn't explain your Problem Please explain your Question so i help to solve.
HI sir i read your Question,, I didn't exact ally understand your Question but suppose if you are using GridView or DetailView to show the image Just Fix the Height and Width of image with Properties here see here [CODE]<asp:TemplateField HeaderText="Image"> <ItemTemplate> <asp:Image ID="Image1" runat="server" [COLOR="Red"]Height="100px"[/COLOR] ImageUrl='<%# Eval("path") %>' [COLOR="red"]Width="100px"[/COLOR] …
It will be placed in Header Control. You cannot fire the header control like grid view so you have to write it by yourself. See here for understand more. [snipped]
The End.