Click here to Skip to main content
15,887,027 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Can you help me in this token? if(this._Item==null){ this._Item = new List<Cart>(); this._dateCreate = DateTime.Now; } }.I do not understand it and why Pin
Joshua Omundson30-Oct-13 4:01
Joshua Omundson30-Oct-13 4:01 
AnswerRe: Can you help me in this token? if(this._Item==null){ this._Item = new List<Cart>(); this._dateCreate = DateTime.Now; } }.I do not understand it and why Pin
Richard MacCutchan30-Oct-13 7:03
mveRichard MacCutchan30-Oct-13 7:03 
QuestionASP.NET GlobalResources.. Use <%$ or <%= embedded code? Pin
JD8629-Oct-13 11:59
JD8629-Oct-13 11:59 
AnswerRe: ASP.NET GlobalResources.. Use <%$ or <%= embedded code? Pin
Wombaticus2-Nov-13 7:43
Wombaticus2-Nov-13 7:43 
QuestionHow To get pop up window using java script Pin
chahthuranga28-Oct-13 23:35
chahthuranga28-Oct-13 23:35 
AnswerRe: How To get pop up window using java script Pin
thatraja29-Oct-13 2:23
professionalthatraja29-Oct-13 2:23 
AnswerRe: How To get pop up window using java script Pin
rahul_kakadia29-Oct-13 21:06
rahul_kakadia29-Oct-13 21:06 
AnswerRe: How To get pop up window using java script Pin
CIKolkataDeveloper10-Nov-13 22:18
CIKolkataDeveloper10-Nov-13 22:18 
function OpenFloatingForm(target, id, SecondId) {

var pnlId = "";
var page = "";
var maskId = "";
var z_index = "";
var margin = 30;

switch (target) {
case "Donor":
pnlId = "#pnlFloating1";
page = "DonationForm.aspx";
maskId = "#mask1";
z_index = "100";
break;
case "Payment":
pnlId = "#pnlFloating1";
page = "PaymentRealizationDetailForm.aspx";
maskId = "#mask1";
z_index = "100";
break;
}
var maskHeight = $(document).height();
var maskWidth = $(window).width();
//Set height and width to mask to fill up the whole screen
$(maskId).css({ 'width': maskWidth + 'px', 'height': maskHeight + 'px', 'z-index': z_index });
$(maskId).show();


var scrollTop = $(document).scrollTop();
var docWidth = document.body.clientWidth;
var docHeight = $(window).height();


$(pnlId).width(docWidth - 2 * margin);
$(pnlId).height(docHeight - (margin * 2));
$(pnlId).css('left', margin);
$(pnlId).css('top', margin + scrollTop);

var frame = $(pnlId).find('iframe');
frame.attr('src', "blank.htm");
frame.width($(pnlId).width());
frame.height($(pnlId).height() - 25);
var param2 = (SecondId > 0) ? "&PaymentID=" + SecondId : "";
frame.attr('src', page + "?DonorID=" + id + param2);

$(pnlId).fadeIn('slow', function () {
});

return false;
}
QuestionGET DATA FROM PAGE AS (CTRL + S) Pin
Member 1030767728-Oct-13 23:13
Member 1030767728-Oct-13 23:13 
AnswerRe: GET DATA FROM PAGE AS (CTRL + S) Pin
Blikkies29-Oct-13 4:21
professionalBlikkies29-Oct-13 4:21 
GeneralRe: GET DATA FROM PAGE AS (CTRL + S) Pin
Member 1030767729-Oct-13 21:12
Member 1030767729-Oct-13 21:12 
GeneralRe: GET DATA FROM PAGE AS (CTRL + S) Pin
Member 1030767729-Oct-13 21:24
Member 1030767729-Oct-13 21:24 
QuestionTimer Pin
AnupamSinghJadoun28-Oct-13 21:43
AnupamSinghJadoun28-Oct-13 21:43 
QuestionCrystal Report Error Pin
Tanadon Manpiboon28-Oct-13 17:49
professionalTanadon Manpiboon28-Oct-13 17:49 
AnswerRe: Crystal Report Error Pin
thatraja28-Oct-13 23:29
professionalthatraja28-Oct-13 23:29 
QuestionHelp popup on new features Pin
civic06028-Oct-13 10:50
civic06028-Oct-13 10:50 
QuestionRe: Help popup on new features Pin
thatraja29-Oct-13 3:13
professionalthatraja29-Oct-13 3:13 
Questionmy question comes slow Pin
Member 771455925-Oct-13 20:21
Member 771455925-Oct-13 20:21 
AnswerRe: my question comes slow Pin
Abhinav S26-Oct-13 1:33
Abhinav S26-Oct-13 1:33 
AnswerRe: my question comes slow Pin
Pratik Bhuva1-Nov-13 3:19
professionalPratik Bhuva1-Nov-13 3:19 
QuestionAbout MVC and Area Pin
Super Lloyd24-Oct-13 18:39
Super Lloyd24-Oct-13 18:39 
SuggestionRe: About MVC and Area Pin
Richard MacCutchan24-Oct-13 21:42
mveRichard MacCutchan24-Oct-13 21:42 
AnswerRe: About MVC and Area Pin
codestar00724-Oct-13 23:32
professionalcodestar00724-Oct-13 23:32 
GeneralRe: About MVC and Area Pin
Super Lloyd26-Oct-13 17:43
Super Lloyd26-Oct-13 17:43 
QuestionUpdate Panel is not Work Pin
Tanadon Manpiboon24-Oct-13 17:47
professionalTanadon Manpiboon24-Oct-13 17:47 

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.