Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
60% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
0 Endorsements
~6K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Forums

18 Posted Topics

Member Avatar for draxous

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

Member Avatar for arun1123
0
332
Member Avatar for paulnamroud

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 …

Member Avatar for aryanverma
0
411
Member Avatar for karthik.net87
Member Avatar for desynch
0
131
Member Avatar for Romil797

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 …

Member Avatar for Sarama2030
0
205
Member Avatar for Scott.Atkinson

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] …

Member Avatar for Atul Dhiman
0
165
Member Avatar for Lazarevsky

<asp:Repeater ID="Repeater1" runat="server" onitemcommand="Repeater1_ItemCommand"> and for to understand exact about repeater control see here [snipped]

Member Avatar for Atul Dhiman
0
994
Member Avatar for keyur.smith

keyur.smith just explain your exact requirement for validation. Then we will help you better.

Member Avatar for dnanetwork
0
99
Member Avatar for Rajsmethode

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 …

Member Avatar for omar isaid
0
851
Member Avatar for sraj44

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.

Member Avatar for Atul Dhiman
0
238
Member Avatar for krunalkakadia

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 …

Member Avatar for Atul Dhiman
0
184
Member Avatar for StevenSchaffner

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.

Member Avatar for Atul Dhiman
0
242
Member Avatar for Jesi523

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 …

Member Avatar for Jesi523
0
1K
Member Avatar for paresh_thummar

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" %> …

Member Avatar for Atul Dhiman
0
127
Member Avatar for MrDeNNiS

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.

Member Avatar for Atul Dhiman
0
81
Member Avatar for great_learner

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. …

Member Avatar for Atul Dhiman
0
165
Member Avatar for Saikumar Adep

Your Question didn't explain your Problem Please explain your Question so i help to solve.

Member Avatar for Atul Dhiman
0
104
Member Avatar for fawadkhalil

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] …

Member Avatar for Atul Dhiman
0
146
Member Avatar for krunalkakadia

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]

Member Avatar for Atul Dhiman
0
222

The End.