Yeap, but that doesnt mean, it is not possible.
Sherin Iranimose
Posts
-
Which Server handles Request -
Modalpopup extnder in an ifarmeAbhishek Sur wrote:
if you load the same inside a div
How do I load a aspx page inside a div(without iframe)? or is there any other alternatives for iframe.
-
Which Server handles RequestSo cant we use it with asp.net?
-
Grid view? -
Which Server handles Request -
Which Server handles RequestCan't we use the Mod_AspDotNet module in appache? appche+asp.net[^] The team is retired but the old Mod_AspDotNet is available at Mod_AspDotNet[^]
-
Run command?devenv
-
Modalpopup extnder in an ifarmeHi All, I've a page as shown below ------------------------------ -------HEADER ------------------------------ ---MENU---IFRAME When I click on menu the iframe part loads with new page in the iframe. Now the problem is, there is one Ajax Modalpopup extender in the iframe page. when I show the modalpopup It shows only within the Iframe. How can I bring the modalpopup window out side the iframe(I want to cover the modalpopup in the entire window.). I'm stuck with this in last 3 days... Thanks in advance...
-
Not considering "If condition in inside the foreach statement" [modified]New one wrote:
DS.Tables[DS.Tables.Count - 1].Rows
If there is only one Table in the DS always, Why cant you use a DataTable.
New one wrote:
drc.Table.Rows[k][1].ToString()
Set a break point a check what value is there in the above code.
-
Multi Column in a DropDownYes you are right... And There are 100s ways doing this. Did you check the answer,That I've given? :)
-
how to use fileupload control in usercontrol and save the file or image in a folderHow you are accessing the control in other pages. Or what problem you are getting? Did you try by creating a public property in the control, That return required information of the fileupload control?
-
Multi Column in a DropDown -
Creating a gridview programatically in asp.net 2.0 -
From datatable binding the mail body in runtimeNew one wrote:
for (int j = DS.Tables.Count - 1; j < DS.Tables.Count; j++)
what you are trying to do with the loop? That loop always iterates one time.
-
IIS 6.0 Virtual Directorycreate a virtual directory admin pointing to your admin folder in the main directory. Set the default(say default.aspx) page for newly created folder.
-
How can i check textbox null in grid view using javascriptROTFL I cannot stop it...
-
How to update dropdownlist.selectedvalue into database?Stop changing your question in each second. Search insert update delete using gridview[^] in google That will be better.
-
How to update dropdownlist.selectedvalue into database?There are lots of ways to update database from gridview. How you are doing it? What difficulty you are facing?
-
Radcombo Client IDsamerh wrote:
var Name=document.getElementById('<%=RadAutoComplete.ClientID %>');
samerh wrote:
alert(name.Value);
Name or name? :doh:
EVEN THE WORD IMPOSSIBLE SAYS I M POSSIBLE. How to post a question
-
google translatorThink about the following scenario... While loading the page 'LighterBrand.aspx' you are calling the function convertnew('en|es'); Using following code <script language='javascript'>convertnew('en|es');</script> And in the function 'convertnew' 49th line in the JS function indexof_p = pattern.indexOf('|'); So value of 'indexof_p' will be greater than 0. So if (indexof_p == -1) will return a false and the control go to else part.
else { var psplit = pattern.split('|'); new_pattern = psplit[0]+'|'+psplit[1]; if (psplit[1] == 'en') { isen = 1; }
Here if (psplit[1] == 'en') is false because our pattern is 'en|es' So that the variable 'isen' remains blank. And in the following if conditionif (isen == 1) { thisurl = new_location; } else { thisurl = 'http://translate.google.com/translate_c?langpair=' + new_pattern + "&u=" + new_location; }
if (isen == 1) is false because 'isen' not set to 1. So else part will work. thisurl = 'http://translate.google.com/translate\_c?langpair=' + new_pattern + "&u=" + new_location; Then 'open_in_same_window' is 0. So that So control goes to following 'if'if (CanAnimate ){ msgWindow=window.open('' ,'_self','toolbar=yes,location=yes,directories=yes,status=yes,scrollbars=yes,menubar=yes,resizable=yes,left=0,top=0'); msgWindow.focus(); msgWindow.location.href = thisurl; } else { msgWindow=window.open(thisurl,'_self','toolbar=yes,location=yes,directories=yes,status=yes,scrollbars=yes,menubar=yes,resizable=yes,left=0,top=0'); }
Here In both case msgWindow.location.href = thisurl; OR msgWindow=window.open(thisurl,'_self','toolbar=yes,location=yes,directories=yes,status=yes,scrollbars=yes,menubar=yes,resizable=yes,left=0,top=0'); causes to open the page 'LighterBrand.aspx' This causes to a call to the function 'convertnew('en|es');' So that again the procedure that I explained will happen, Like a recursion Hope this will help you.EVEN THE WORD IMPOSSIBLE SAYS I M POSSIBLE. How to post a question