Click here to Skip to main content
15,885,435 members
Home / Discussions / Web Development
   

Web Development

 
QuestionADODB.Recordset error '800a0cc1' Pin
Member 340808220-Jan-09 22:30
Member 340808220-Jan-09 22:30 
AnswerRe: ADODB.Recordset error '800a0cc1' Pin
Aman Bhullar20-Jan-09 23:29
Aman Bhullar20-Jan-09 23:29 
GeneralRe: ADODB.Recordset error '800a0cc1' [modified] Pin
Member 340808221-Jan-09 16:17
Member 340808221-Jan-09 16:17 
GeneralRe: ADODB.Recordset error '800a0cc1' Pin
Aman Bhullar21-Jan-09 21:20
Aman Bhullar21-Jan-09 21:20 
GeneralRe: ADODB.Recordset error '800a0cc1' Pin
Member 340808221-Jan-09 21:34
Member 340808221-Jan-09 21:34 
GeneralRe: ADODB.Recordset error '800a0cc1' Pin
Aman Bhullar21-Jan-09 23:24
Aman Bhullar21-Jan-09 23:24 
GeneralRe: ADODB.Recordset error '800a0cc1' Pin
Member 340808221-Jan-09 16:34
Member 340808221-Jan-09 16:34 
QuestionURL in action attribute is converted to page name only (for FireFox)......? Pin
AshishTijare20-Jan-09 20:10
AshishTijare20-Jan-09 20:10 
I have a frame. I am creating a new form object in javascript.
I have set action attribute to "TestMyPage.ashx"
During runtime, FireFox converts action attribute to full url
containing protocol, host name, virtual dir. name and page name.
e.g.: "http://localhost:4768/MyApp/TestMyPage.ashx"

It is expected that FireFox should load the url in action attribute
on submit when it have the full url.
But when I add the form object to frame, it converts the action
attribute to "TestMyPage.ashx". I don't know what is causing this.
Because action attribute now has page name only, it can not load
the page (it do not have full url now).

Code for FireFox:
	this.innerDocument = document.getElementById('MYFRAME').contentWindow.document;
	var _form = document.createElement('form');
       _form.id = 'MYFORM';
       _form.name = 'MYFORM';
       _form.method = 'post';
       _form.enctype = 'multipart/form-data';
       _form.action = 'TestMyPage.ashx'; //Here, at runtime, action attribute gives full url.
        this.innerDocument.body.appendChild(_form); //Here, at runtime, full url in action 
attribute is converted to page name only ...?.

When this is done for IE, during runtime it shows full url in action
attribute, so it loads the page successfully.
But FireFox is converting url to page name in action attribute.

Code for IE:
         var _form = this.innerDocument.createElement('<form id = "MYFORM" 
method="post" enctype="multipart/form-data"  action="ImportHandler.ashx" />');         
         var formHTML = _form.outerHTML;
         document.getElementById('MYFRAME').contentWindow.document.body.innerHTML = formHTML;

Can anybody suggest what is the problem for such behavior.
Any guesses are welcome.
Thank you.

Ashish
Software Engineer, Pune

QuestionSending HTML email using mailto Pin
peaceful_warrior20-Jan-09 18:35
peaceful_warrior20-Jan-09 18:35 
AnswerRe: Sending HTML email using mailto Pin
Aman Bhullar20-Jan-09 21:51
Aman Bhullar20-Jan-09 21:51 
QuestionCapture an object in ASP Pin
Anoop Unnikrishnan20-Jan-09 17:06
Anoop Unnikrishnan20-Jan-09 17:06 
QuestionCircumventing IE Navigation Controls Pin
Roger Wright20-Jan-09 16:53
professionalRoger Wright20-Jan-09 16:53 
QuestionHow to Display Repeater control Items like table with rows and columns??? Pin
Charmy320-Jan-09 9:28
Charmy320-Jan-09 9:28 
AnswerRe: How to Display Repeater control Items like table with rows and columns??? Pin
Abhishek Sur20-Jan-09 10:41
professionalAbhishek Sur20-Jan-09 10:41 
QuestionVirtual Pin
BRIMID19-Jan-09 11:12
BRIMID19-Jan-09 11:12 
QuestionComplex c# javascript to web sevice call question Pin
m1k3314118-Jan-09 15:45
m1k3314118-Jan-09 15:45 
QuestionAdding custom button to IE Pin
Haim Nachum18-Jan-09 10:00
Haim Nachum18-Jan-09 10:00 
AnswerRe: Adding custom button to IE Pin
Not Active19-Jan-09 5:22
mentorNot Active19-Jan-09 5:22 
Questionemail server Pin
JimmyRopes18-Jan-09 9:46
professionalJimmyRopes18-Jan-09 9:46 
AnswerRe: email server Pin
Aman Bhullar18-Jan-09 18:28
Aman Bhullar18-Jan-09 18:28 
GeneralRe: email server Pin
JimmyRopes19-Jan-09 1:34
professionalJimmyRopes19-Jan-09 1:34 
AnswerRe: email server Pin
Jörgen Andersson19-Jan-09 4:24
professionalJörgen Andersson19-Jan-09 4:24 
GeneralRe: email server Pin
JimmyRopes19-Jan-09 4:34
professionalJimmyRopes19-Jan-09 4:34 
GeneralRe: email server Pin
Jörgen Andersson19-Jan-09 5:00
professionalJörgen Andersson19-Jan-09 5:00 
GeneralRe: email server Pin
JimmyRopes19-Jan-09 6:55
professionalJimmyRopes19-Jan-09 6:55 

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.