Click here to Skip to main content
15,911,646 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Same control appearing different in seperate web pages - though rendered code is same in view source Pin
NetQuestions19-May-09 10:16
NetQuestions19-May-09 10:16 
Questionhelp in ItemCreated method plus javascript Pin
Sujay chakraborty13-May-09 6:04
Sujay chakraborty13-May-09 6:04 
GeneralRe: help in ItemCreated method plus javascript Pin
Sujay chakraborty13-May-09 6:39
Sujay chakraborty13-May-09 6:39 
AnswerRe: help in ItemCreated method plus javascript Pin
Brian W King13-May-09 7:29
Brian W King13-May-09 7:29 
GeneralRe: help in ItemCreated method plus javascript Pin
Ramesh Swaminathan13-May-09 7:37
Ramesh Swaminathan13-May-09 7:37 
GeneralRe: help in ItemCreated method plus javascript Pin
Brian W King13-May-09 9:35
Brian W King13-May-09 9:35 
GeneralRe: help in ItemCreated method plus javascript Pin
Sujay chakraborty13-May-09 18:26
Sujay chakraborty13-May-09 18:26 
Questionc# with Linq help getting box checked in database Pin
Franklinlloyd13-May-09 5:32
Franklinlloyd13-May-09 5:32 
Have problem with getting check box in database checked when a current part of admin is approved or not approved here some code.

getting error with bool value


protected void ApproveAdvertiser()
{
//Add Code to add/edit/delete events (Possible case statement goes here?)
DataService ds = new DataService(int.Parse(ConfigurationManager.AppSettings["ConnStr"]));

Advertiser adv = new Advertiser();
adv.AdvertiserId = 0;

ind_approved.Checked = adv.Approver;
ds.approveAdvertiser(adv, ValuePassedIn);

Response.Redirect("Advertisers.aspx");
}

protected void BDelete_Click(object sender, EventArgs e)
{
if (RBLFunctions.SelectedValue.Equals("Delete"))
{

DeleteAdvertiser();
Response.Redirect("Advertisers.aspx");
}
else
{
if (RBLDelete.SelectedValue.Equals("Yes"))
{
//ApproveAdvertiser(true);
}
else
{
//ApproveAdvertiser(false);
}
Response.Redirect("Advertisers.aspx");
}
}
AnswerRe: c# with Linq help getting box checked in database Pin
Christian Graus13-May-09 6:04
protectorChristian Graus13-May-09 6:04 
AnswerRe: c# with Linq help getting box checked in database Pin
Brian W King13-May-09 9:33
Brian W King13-May-09 9:33 
GeneralRe: c# with Linq help getting box checked in database Pin
Franklinlloyd13-May-09 9:51
Franklinlloyd13-May-09 9:51 
QuestionAccess server side data from client side Pin
dptalt13-May-09 5:19
dptalt13-May-09 5:19 
AnswerRe: Access server side data from client side Pin
AlexeiXX313-May-09 5:42
AlexeiXX313-May-09 5:42 
GeneralRe: Access server side data from client side Pin
dptalt13-May-09 7:23
dptalt13-May-09 7:23 
GeneralRe: Access server side data from client side Pin
dptalt14-May-09 3:44
dptalt14-May-09 3:44 
QuestionProblem with Compiling a WEb Setup Project Pin
Vimalsoft(Pty) Ltd13-May-09 5:10
professionalVimalsoft(Pty) Ltd13-May-09 5:10 
QuestionExcel Error System.Runtime.InteropServices.COMException: Exception from HRESULT: 0x800A03EC Pin
DotNetCoderJunior13-May-09 4:48
DotNetCoderJunior13-May-09 4:48 
AnswerRe: Excel Error System.Runtime.InteropServices.COMException: Exception from HRESULT: 0x800A03EC Pin
MidwestLimey13-May-09 5:38
professionalMidwestLimey13-May-09 5:38 
GeneralRe: Excel Error System.Runtime.InteropServices.COMException: Exception from HRESULT: 0x800A03EC Pin
DotNetCoderJunior13-May-09 20:07
DotNetCoderJunior13-May-09 20:07 
AnswerRe: Excel Error System.Runtime.InteropServices.COMException: Exception from HRESULT: 0x800A03EC Pin
moslem52228-Dec-10 19:35
moslem52228-Dec-10 19:35 
AnswerRe: Excel Error System.Runtime.InteropServices.COMException: Exception from HRESULT: 0x800A03EC Pin
Ramesh Swaminathan13-May-09 7:06
Ramesh Swaminathan13-May-09 7:06 
GeneralRe: Excel Error System.Runtime.InteropServices.COMException: Exception from HRESULT: 0x800A03EC Pin
DotNetCoderJunior13-May-09 20:29
DotNetCoderJunior13-May-09 20:29 
AnswerRe: Excel Error System.Runtime.InteropServices.COMException: Exception from HRESULT: 0x800A03EC Pin
sarang.c++28-Dec-11 19:39
sarang.c++28-Dec-11 19:39 
QuestionLoading Control along with Javascript on ajax Call Pin
Rizwan Bashir13-May-09 3:09
Rizwan Bashir13-May-09 3:09 
Questionworking with iis 7.0 Pin
aamirzada13-May-09 2:07
aamirzada13-May-09 2:07 

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.