aspfactor.blogspot.com
Web Development: Refresh or Reload parent window from child window
http://aspfactor.blogspot.com/2011/02/refresh-or-reload-parent-window-from.html
Friday, February 11, 2011. Refresh or Reload parent window from child window. To refresh the parent window from pop up window use below. Window.opener.location.reload();. Subscribe to: Post Comments (Atom). UNICODE ASP files are not supported Error solution. A semi colon character was expected - XML Error. Refresh or Reload parent window from child window. Accessing parent window form elements. Http:/ sqlfactor.blogspot.com. View my complete profile. Simple template. Powered by Blogger.
aspfactor.blogspot.com
Web Development: Accessing parent window form elements
http://aspfactor.blogspot.com/2011/02/accessing-parent-window-form-elements.html
Friday, February 4, 2011. Accessing parent window form elements. Often we come across scenarios where we have to access the parent window form element. Below is the syntax for accessing the parent element. This solution is cross browser compatible and works in all major browsers. Subscribe to: Post Comments (Atom). UNICODE ASP files are not supported Error solution. A semi colon character was expected - XML Error. Refresh or Reload parent window from child window. Accessing parent window form elements.
aspfactor.blogspot.com
Web Development: December 2010
http://aspfactor.blogspot.com/2010_12_01_archive.html
Thursday, December 23, 2010. Cookie transition between classic ASP and ASP.NET. Guys, here is what i have came across recently. Here is the reason:. Friday, December 3, 2010. 9 Tips to write an Article. 1 Whenever you want to write an article, dont start right away thinking on what to write. Scribble down on a paper whenever a topic comes into your mind. You can chose from this list when you are ready to start writing an article. 5 Try to keep the article short. 8 Dont look at the article for one day....
aspfactor.blogspot.com
Web Development: January 2012
http://aspfactor.blogspot.com/2012_01_01_archive.html
Monday, January 16, 2012. Remove the Lock Icon over a Folder in Windows 7. The lock icon in Windows 7 indicates that the file or folder can only be accessed by you, and not any other user on your computer. If this is desired, then the lock icon is a good way to ensure that those settings are in place. If this isn’t your intention, then it’s an eyesore. To remove the lock icon, we have to change the security settings on the folder to allow the Users group to, at the very least, read from the folder.
aspfactor.blogspot.com
Web Development: Javascript pop up window focus
http://aspfactor.blogspot.com/2011/01/javascript-pop-up-window-focus.html
Sunday, January 16, 2011. Javascript pop up window focus. How to focus the pop up window if the same window needs to be refreshed multiple times based on the action? Newwindow = window.open(url, "myWin", "width=600,height=400,toolbar=0,scrollbars=0");. Labels: focus pop up window. Javascript pop up window. Pop up window focus. Subscribe to: Post Comments (Atom). Javascript pop up window focus. Http:/ sqlfactor.blogspot.com. View my complete profile. Simple template. Powered by Blogger.
aspfactor.blogspot.com
Web Development: July 2009
http://aspfactor.blogspot.com/2009_07_01_archive.html
Monday, July 13, 2009. Tips for Cross Browser Compatibility. 1 All HTML controls in the page should have an ID attribute. 2 Always use fixed width and height rather than percentages. 3 All the elements in the page should be bound in a proper html layout. 4 Modal windows does not work properly in firefox. Use normal pop up windows instead. Window.open(.) works well in all conditions. ShowModaldialog does not work properly. Var strVals = parent.opener? Parent.opener : parent.dialogArguments;. RS:ReportView...
aspfactor.blogspot.com
Web Development: February 2011
http://aspfactor.blogspot.com/2011_02_01_archive.html
Tuesday, February 15, 2011. UNICODE ASP files are not supported Error solution. Active Server Pages, ASP 0239 (0x80004005). UNICODE ASP files are not supported. Cigna/default.asp, line 1. With your project open, click on File, Advanced Save Options. Select US-ASCII. Then click to apply to ALL DOCUMENTS. It will give you a warning that some characters may not play, but you can ignore that and click No. From that point forward, all saves should be in ASCII and your pages will work fine. In the link with.
aspfactor.blogspot.com
Web Development: June 2008
http://aspfactor.blogspot.com/2008_06_01_archive.html
Saturday, June 14, 2008. Generate HTML dynamically in javascript. Place a div tag in then body of the html where you the dynamic html to be displayed. Suppose you want a textbox control to be added each time in an on click event of a hyper link,. Function AddDynHTML(){var newhtml=" ;/ Create an html div element using createElement method var newdiv = document.createElement('div');/ Put the new html content in a variable var newhtml = ". You can use this logic according to your requirements. Http:/ sqlfac...
aspfactor.blogspot.com
Web Development: September 2008
http://aspfactor.blogspot.com/2008_09_01_archive.html
Monday, September 15, 2008. Browser detection in ASP. By using Request.ServerVariables("HTTP USER AGENT"), we can write a logic to implement this. Request.ServerVariables("HTTP USER AGENT") will result in the following:. Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727). Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.1) Gecko/2008070208 Firefox/3.0.1. Based on above, we can write below logic. VarBrowser= Request.ServerVariables("HTTP USER AGENT").