Click here to Skip to main content
15,903,203 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: forms Authentication Pin
Abhijit Jana26-Nov-09 20:42
professionalAbhijit Jana26-Nov-09 20:42 
GeneralRe: forms Authentication Pin
sashidhar26-Nov-09 20:43
sashidhar26-Nov-09 20:43 
GeneralRe: forms Authentication Pin
geeeeeeeetha26-Nov-09 21:49
geeeeeeeetha26-Nov-09 21:49 
QuestionTranslate text from English to spainsh Pin
amit sahu2026-Nov-09 20:11
amit sahu2026-Nov-09 20:11 
AnswerRe: Translate text from English to spainsh Pin
Abhishek Sur26-Nov-09 20:39
professionalAbhishek Sur26-Nov-09 20:39 
AnswerRe: Translate text from English to spainsh Pin
sashidhar26-Nov-09 20:42
sashidhar26-Nov-09 20:42 
GeneralRe: Translate text from English to spainsh Pin
Abhishek Sur26-Nov-09 21:19
professionalAbhishek Sur26-Nov-09 21:19 
QuestionCannot assign to 'ActivateCode' because it is a 'method group' Pin
ademsandeepreddy26-Nov-09 20:05
ademsandeepreddy26-Nov-09 20:05 
protected void btnRegister_Click(object sender, EventArgs e)
{
objRegistration.UserName = txtUserName.Text.Trim();
string strGuid = Guid.NewGuid().ToString();
string strPassWord = BAMLibrary.Registration.GetRandomPassword(10);
if (int.Parse(objRegistration.CheckAvailability().Rows[0].ItemArray[0].ToString()) == 0)
{
objRegistration.FirstName = txtFirstName.Text;
objRegistration.LastName = txtLastName.Text;
objRegistration.Email = txtEmailID.Text;
objRegistration.DOB = DateTime.Parse(txtDOB.Text);
objRegistration.Address = txtPermanentAddress.Text;
objRegistration.City = txtCity.Text;
objRegistration.Country = ddlCountry.SelectedItem.Text;
objRegistration.AlternateEmailID = txtAlternateEmailID.Text;
objRegistration.ReferalID = int.Parse(hfReferalID.Value.ToString());
objRegistration.AccountNo = txtAccNo.Text;
objRegistration.AccountHolderName = txtAccountHolderName.Text;
objRegistration.BankName = txtBankName.Text;
objRegistration.Branch = txtBankBranch.Text;
objRegistration.PassWord = strPassWord;
objRegistration.IFCUCode = txtIFCUCode.Text;
objRegistration.ActivateCode = strGuid;
if (objRegistration.UserRegistration() > 0)
{
Response.Redirect(@"..\Conformation.aspx");
}
else
{
Response.Write("<script>alert('Unsuccessfull registration !')</script>");
}
}
else
{
Response.Write("<script>alert('User id already exist')</script>");
}

}
the following event is raising the error

Error 91 Cannot assign to 'ActivateCode' because it is a 'method group' E:\BEAMILLIONAIR\BAM\BAM\BAM\BAM\Register.aspx.cs 94 21 BAM

like this can anybody help me.

Thanks in advance

Sandeep adem

hi

AnswerRe: Cannot assign to 'ActivateCode' because it is a 'method group' Pin
Abhijit Jana26-Nov-09 20:13
professionalAbhijit Jana26-Nov-09 20:13 
QuestionProblem with Ajax Modal pop up Pin
sris 42626-Nov-09 19:53
sris 42626-Nov-09 19:53 
AnswerRe: Problem with Ajax Modal pop up Pin
Vimalsoft(Pty) Ltd26-Nov-09 20:03
professionalVimalsoft(Pty) Ltd26-Nov-09 20:03 
AnswerRe: Problem with Ajax Modal pop up Pin
Abhijit Jana26-Nov-09 20:07
professionalAbhijit Jana26-Nov-09 20:07 
AnswerRe: Problem with Ajax Modal pop up [modified] Pin
Mark Graham27-Nov-09 0:44
Mark Graham27-Nov-09 0:44 
QuestionAuto Increment problem (Identity property) Pin
Maxdd 726-Nov-09 16:28
Maxdd 726-Nov-09 16:28 
AnswerRe: Auto Increment problem (Identity property) Pin
N a v a n e e t h26-Nov-09 16:45
N a v a n e e t h26-Nov-09 16:45 
GeneralRe: Auto Increment problem (Identity property) Pin
Maxdd 726-Nov-09 16:49
Maxdd 726-Nov-09 16:49 
GeneralRe: Auto Increment problem (Identity property) Pin
N a v a n e e t h26-Nov-09 16:57
N a v a n e e t h26-Nov-09 16:57 
AnswerRe: Auto Increment problem (Identity property) Pin
Abhijit Jana26-Nov-09 17:13
professionalAbhijit Jana26-Nov-09 17:13 
AnswerRe: Auto Increment problem (Identity property) Pin
Shameel26-Nov-09 19:43
professionalShameel26-Nov-09 19:43 
AnswerRe: Auto Increment problem (Identity property) [modified] Pin
Vimalsoft(Pty) Ltd26-Nov-09 20:02
professionalVimalsoft(Pty) Ltd26-Nov-09 20:02 
GeneralRe: Auto Increment problem (Identity property) Pin
Shameel27-Nov-09 0:31
professionalShameel27-Nov-09 0:31 
GeneralRe: Auto Increment problem (Identity property) Pin
Vimalsoft(Pty) Ltd27-Nov-09 3:13
professionalVimalsoft(Pty) Ltd27-Nov-09 3:13 
GeneralRe: Auto Increment problem (Identity property) Pin
Maxdd 729-Nov-09 7:06
Maxdd 729-Nov-09 7:06 
GeneralRe: Auto Increment problem (Identity property) Pin
Vimalsoft(Pty) Ltd29-Nov-09 19:20
professionalVimalsoft(Pty) Ltd29-Nov-09 19:20 
Questiondatasource on asp:dropdownlist is null after a postback Pin
AlexG211926-Nov-09 14:30
AlexG211926-Nov-09 14:30 

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.