Forum: ASP.NET Jan 10th, 2009 |
| Replies: 0 Views: 579 Hi all,
i want to create one crystalreport from following storeprocedure
CREATE PROCEDURE dbo.usp_proc1
(
@ID as int
) |
Forum: ASP.NET Nov 26th, 2008 |
| Replies: 4 Views: 2,715 Hi,
If you are looking for feature like Ajax, i hope the following link will help you
http://www.asp.net/ajax/ajaxcontroltoolkit/Samples/Calendar/Calendar.aspx
Vimal |
Forum: ASP.NET Nov 25th, 2008 |
| Replies: 6 Views: 2,047 Hi
Actually i want to update some other cells + Some calculations also there whenever the dynamically created text field changed, thats the main thing i want to do. Coz the each and every cell... |
Forum: ASP.NET Nov 24th, 2008 |
| Replies: 6 Views: 2,047 Hi Serkan,
The code structure is like
PageLoad -> above method ->
protected void Text_Changed(object sender,EventArgs e)
{
TextBox t1 =null;
t1 = (TextBox)sender; |
Forum: ASP.NET Nov 24th, 2008 |
| Replies: 6 Views: 2,047 Hi All,
Please help me to complete the following type of event handling in asp.net with C#
private TableCell CreateTextCell(string name,string id)
{
TableCell cell = new... |