Ask a Question related to ASP.NET Web Services, Design and Development.
-
Aneesh a #1
accessing a calender object placed inside <asp:tablecell>
hello ,
I am a.net developer recently i confronted with a problem that is while
desighning the page i placed <asp:calendar> inside table cell and try to
access it using a button click ,and i named it using 'id' tag.During
compiling it shows an error that
id name of calendar not existing.
I am entering the snippet of code here
<asp:TableCell ID="fromcol">
<asp:TextBox ID="datefrom" Runat="server" />
<asp:Calendar ID="fromdate" Runat="server" Visible="false" />
<asp:ImageButton Runat="server" OnClick="selectdate"
BackColor="#cc66cc" BorderColor="#6666ff" BorderStyle="Ridge" />
</asp:TableCell>
and select function is here
public void selectdate(object sender, System.Web.UI.ImageClickEventArgs e)
{
fromdate.Visible=true;
}
I have performed it in VS.net and the error shows that no such object named
"fromdate" exists.
Aneesh a Guest
-
Accessing User Control inside Datagrid
I've created a simple user control (dynamically populated dropdown list via database) and dynamically added it to a datagrid. There are 9 instances... -
Strokes inside / outside of object
More of a request than a question, really... I find myself needing an inside-the-path stroke often enough, now, that I feel it warrants a little... -
accessing textfield inside movieclip
I want to create textfields dynamically and then be able to click on these textboxes to perform different actions depending on the value of the... -
Accessing WebServices from a web app hosted inside Outlook XP
Ok, it turns out that "outlook:" moniker is actually causing our problem. When you first load a page into Outlook XP, the document.URL value is... -
Accessing Textbox inside a Template column using javascript
Hi, I am having a datagrid with a template column. Inside the template column I have a textbox and an image button. On click of the image button, I...



Reply With Quote

