[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

Question
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

6.8

Mime Type Error

Asked by thesma in Wireless Application Protocol (WAP)

I have the following two code segments
The first one works. However when the user submits the form the calling page is supposed to print welcome (user's full name). When it calls the second page I'm getting the Mime Error Stating that the browser doesn't support the text/html mime type. I set the Content Type using the asp Response.ContentType just like I did on the first page. But it still returns an error. I set it on the server as well. Any Ideas I put the code below

First Deck of Cards This code works:

<%@ Language=VBScript %>

<%Response.ContentType = "text/vnd.wap.wml"%>

<?xml version="1.0"?>
<!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN" "http://www.wapforum.org/DTD/wml_1.1.xml">

<wml>

<!--Welcome Screen-->

<card id="Welcome" title="Login">
<p>
Welcome To E-com Media<br/>
UserName? <input name="UserName" type="text" maxlength="8"/>
Password? <input name="Password" type="password" maxlength="8"/>
         
<do type="accept" label="Login">
<go href="login.asp" method="post">
<postfield name="UserName" value="$UserName"/>
<postfield name="Password" value="$Password"/>
</go>
</do>
</p>
</card>
</wml>

Second Deck This is returning the Mime Error:

<%@ Language=VBScript %>

<%Response.ContentType = "text/vnd.wap.wml"%>

<?xml version="1.0"?>
<!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN" "http://www.wapforum.org/DTD/wml_1.1.xml">

<wml>

<!--Welcome Screen-->

<card id="Welcome" title="Extranet">
<p>
<%

Set DC = Server.CreateObject("ADODB.Connection")
DC.Open "DSN=extranet;UID=sa;PWD=l33b3lt"
     
SQL = "Select * From authentication where AuthenticationID = 6"

Set RS = Server.CreateObject("ADODB.RecordSet")
RS.Open SQL, DC, 3,3
     
     
If Not (RS.EOF and RS.BOF) Then      

Response.Write "<i>Welcome, " & RS("FullName")& "</i>"
%>
</p>
</card>
</wml>


Any help you can give would be great
 
Related Solutions
 
Loading Advertisement...
 
[+][-]12/08/00 10:41 AM, ID: 4500Accepted Solution

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

About this solution

Zone: Wireless Application Protocol (WAP)
Sign Up Now!
Solution Provided By: onebadboy
Participating Experts: 3
Solution Grade: A
 
[+][-]12/06/00 02:11 PM, ID: 1296Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]12/07/00 12:32 AM, ID: 1936Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]12/08/00 10:44 AM, ID: 4502Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]12/10/00 01:35 PM, ID: 7880Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]12/11/00 01:01 AM, ID: 8702Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]12/11/00 01:05 AM, ID: 8706Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]12/11/00 02:31 AM, ID: 8770Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]12/11/00 03:59 PM, ID: 9668Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
 
Loading Advertisement...
20091111-EE-VQP-92