Click here to Skip to main content
15,889,739 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: how i want to make one panel display when first click and hide when second click Pin
meghamaharshi15-Mar-08 0:42
meghamaharshi15-Mar-08 0:42 
QuestionCreate a simple custom control [modified] Pin
jinovv14-Mar-08 23:59
jinovv14-Mar-08 23:59 
GeneralRe: Create a simple custom control Pin
Abhijit Jana15-Mar-08 0:12
professionalAbhijit Jana15-Mar-08 0:12 
QuestionHow to bind RadioButtonList in a formview in insert mode. Pin
Trishul Tandel14-Mar-08 23:20
Trishul Tandel14-Mar-08 23:20 
GeneralDatagrid binding into two columns Pin
VanithaVasu14-Mar-08 23:04
VanithaVasu14-Mar-08 23:04 
Generalneed some guggession for speeding up of web page Pin
mohd imran abdul aziz14-Mar-08 22:18
mohd imran abdul aziz14-Mar-08 22:18 
GeneralRe: need some guggession for speeding up of web page Pin
pmarfleet15-Mar-08 1:32
pmarfleet15-Mar-08 1:32 
Questiondelegate Pin
Pankaj Garg14-Mar-08 21:46
Pankaj Garg14-Mar-08 21:46 
Following is the example that shows the utility of delegates .
Am i doing right?
or there is further need of code improvement ?

using System;<br />
using System.Collections.Generic;<br />
using System.ComponentModel;<br />
using System.Data;<br />
using System.Drawing;<br />
using System.Text;<br />
using System.Windows.Forms;<br />
<br />
namespace w<br />
{<br />
public partial class Form1 : Form<br />
{<br />
public Form1()<br />
{<br />
InitializeComponent();<br />
}<br />
<br />
private void Form1_Load(object sender, EventArgs e)<br />
{<br />
d ddd = new d();<br />
ddd.sd(0); <br />
}<br />
}<br />
<br />
}<br />
<br />
namespace w<br />
{<br />
public delegate void smartdelegate(int i);<br />
public class d<br />
{<br />
public smartdelegate sd;<br />
public d()<br />
{<br />
sd = new smartdelegate(aa);<br />
}<br />
private void aa(int i)<br />
{<br />
System.Windows.Forms.MessageBox.Show(i.ToString());<br />
}<br />
}<br />
} 


If you have an apple & I have an apple and we exchange our apples, then each of us will still have only one apple but if you have an idea & I have an idea and we exchange our ideas, then each of us will have two ideas!

General[Out of Topic] Your signature Pin
Vasudevan Deepak Kumar15-Mar-08 4:27
Vasudevan Deepak Kumar15-Mar-08 4:27 
GeneralTable Merge [modified] Pin
md_refay14-Mar-08 21:02
md_refay14-Mar-08 21:02 
GeneralRe: Table Merge Pin
Abhijit Jana14-Mar-08 21:11
professionalAbhijit Jana14-Mar-08 21:11 
Generalerror as 'Access is denied' in C# ASP.NET web application Pin
Murtuza Husain Miyan Patel14-Mar-08 20:59
professionalMurtuza Husain Miyan Patel14-Mar-08 20:59 
GeneralRe: error as 'Access is denied' in C# ASP.NET web application Pin
Abhijit Jana14-Mar-08 21:06
professionalAbhijit Jana14-Mar-08 21:06 
Questionhow to send attachment to mail in background. Pin
rahul.net1114-Mar-08 20:36
rahul.net1114-Mar-08 20:36 
GeneralRe: how to send attachment to mail in background. Pin
Abhijit Jana14-Mar-08 20:49
professionalAbhijit Jana14-Mar-08 20:49 
GeneralRe: how to send attachment to mail in background. Pin
rahul.net1114-Mar-08 20:54
rahul.net1114-Mar-08 20:54 
GeneralRe: how to send attachment to mail in background. Pin
Abhijit Jana14-Mar-08 20:56
professionalAbhijit Jana14-Mar-08 20:56 
GeneralRe: how to send attachment to mail in background. [modified] Pin
rahul.net1114-Mar-08 21:02
rahul.net1114-Mar-08 21:02 
GeneralRe: how to send attachment to mail in background. Pin
Abhijit Jana14-Mar-08 21:18
professionalAbhijit Jana14-Mar-08 21:18 
GeneralRe: how to send attachment to mail in background. Pin
rahul.net1114-Mar-08 21:27
rahul.net1114-Mar-08 21:27 
GeneralRe: how to send attachment to mail in background.(another code for doc) Pin
rahul.net1114-Mar-08 21:28
rahul.net1114-Mar-08 21:28 
GeneralRe: how to send attachment to mail in background.(another code for doc) Pin
Abhijit Jana14-Mar-08 21:29
professionalAbhijit Jana14-Mar-08 21:29 
GeneralRe: how to send attachment to mail in background.(another code for doc) Pin
rahul.net1114-Mar-08 21:30
rahul.net1114-Mar-08 21:30 
GeneralRe: how to send attachment to mail in background.(another code for doc) Pin
Abhijit Jana14-Mar-08 21:32
professionalAbhijit Jana14-Mar-08 21:32 
GeneralRe: how to send attachment to mail in background.(another code for doc) Pin
rahul.net1114-Mar-08 21:39
rahul.net1114-Mar-08 21:39 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.