How to make a photo smaller?
Beginner Problems
Hello Guest
  
  • Login
• Register…
• Start blog
  • Who, Where, When
• What can I do?
• What to Read?
  • Polls
• Avatars
• Interests
  • Cities and Countries
• Random blog
• Users search
  • Search
• Games
• Tests
• QAIX
  • Сообщества
• Talxy Chat
• Horoscope
• Online
 
Зарегистрируйся!

QAIX > ASP web-programming > Beginner Problems 14 November 2006 14:42:26

  Recent blog posts: 
  Forums:   
  Discuss: 
  Recent forum topics: 
  Recent forum comments:
  Moderators:

Beginner Problems

Simchajoy2000@Yahoo.Com 14 November 2006 14:42:26
 Hi,

This question will probably be too simplistic for all of you, but I am
trying to teach myself asp and I am having all sorts of problems. I
have a simple html form which calls process.asp on submit:

<html>
<head></head>
<body>
<form action="process.asp­" method=Post>
<table cellpadding="0" cellspacing="5" align=center>
<tr>
<td width="100"><font color="#1B157F">Nam­e:</font></font></td­>
<td><input type="text" name="txtName" size="55"></td>
</tr>
</table>
<input type="submit" name="Submit" value="Submit Now">
</form>
</body>
</html>

I want my process.asp page to display the name the user entered and
then to send an email containing the information. Here is what I have
so far for the process.asp page:

<html>
<head></head>
<body>
<%
Dim strEmail

Dim strName
strName = Request.Form("txtNa­me")
Response.Write strName

Set MyCDONTSMail = CreateObject("CDONT­S.NewMail")
MyCDONTSMail.From = "email1@yahoo.com"
MyCDONTSMail.To = "email1@yahoo.com"
MyCDONTSMail.Subjec­t = "Get-A-Quote Request from " & strName
MyCDONTSMail.Body = MyBody
MyCDONTSMail.Send
Set MyCDONTSMail = Nothing
%>
</body>
</html>

I am not trying to get this to run on a webserver at this point. I am
just trying to get it run in a regular folder on my computer. I
thought that might be the reason why I wasn't receiving any email but
then the Response.Write doesn't work either. When I don't add the html
tags I get a message that asks if I want to save or open the
process.asp page instead of just running it.

A little help? I'm obviously missing something . . . any advice would
be greatly appreciated!

Thank you!

Joy

Add comment
Ray Costanzo 3 January 2006 21:36:16 permanent link ]
 Hi Joy,

No, you're off to a fine start (aside from the fact that you're using 1990s
technology...). But ASP files MUST be processed by a Web server. You can
probably run this locally on your machine. What are the answers to these
questions:

1. What operating system are you running?
2. Do you have IIS installed, do you know?

Ray at home

<simchajoy2000@yaho­o.com> wrote in message
news:1136310232.068­301.7140@g14g2000cwa­.googlegroups.com...­

I am not trying to get this to run on a webserver at this point. I am> just trying to get it run in a regular folder on my computer. I> thought that might be the reason why I wasn't receiving any email but> then the Response.Write doesn't work either. When I don't add the html> tags I get a message that asks if I want to save or open the> process.asp page instead of just running it.>
A little help? I'm obviously missing something . . . any advice would> be greatly appreciated!


Add comment
Simchajoy2000@Yahoo.Com 3 January 2006 23:23:21 permanent link ]
 Thanks Ray,

I do have IIS installed and I am running Windows XP. However, the
webpage will not reside on my computer however. What do I need to do?

Joy

Add comment
Ray Costanzo 4 January 2006 04:11:06 permanent link ]
 The web page ~will~ not but currently does? That's fine. That's normal.
In a default IIS setup, your "home page" for your site should reside in
C:\Inetpub\wwwroot.­ Put your ASP files there and test them by going to
http://localhost/yo­urpagename.asp

NOW, other things:

CDONTS = CDO for NT Server. You're running Windows XP. It does not have
CDONTS. If you installed the SMTP service when you installed IIS, you'll
have CDOSYS. Read this: http://www.aspfaq.c­om/show.asp?id=2026 Depending
on your setup where you're working, the e-mails may not actually be sent.
Like, if you're a bank teller playing with ASP files in between customers
and you start trying to relay e-mail from your site, it probably won't go.
Instead, you may wind up getting a call from a network admin asking why your
machine is trying to relay mail. I suggest that you just stop the SMTP
service and test the success of your ASP code by verifying that the mail was
placed in C:\Inetpub\mailroot­\pickup, if it turns out that you cannot relay
mail from your machine.

Ray at home

<simchajoy2000@yaho­o.com> wrote in message
news:1136319800.957­068.123090@z14g2000c­wz.googlegroups.com.­..> Thanks Ray,>
I do have IIS installed and I am running Windows XP. However, the> webpage will not reside on my computer however. What do I need to do?>


Add comment
Simchajoy2000@Yahoo.Com 4 January 2006 19:51:34 permanent link ]
 Thank you so much Ray, I have done as you instructed and I placed the
folder containing all my html and asp files in C:\Inetpub\wwwroot and
then I created a virtual directory in IIS that points to that folder (I
was supposed to do that right?) but when I say
http://localhost/yo­urpagename.asp - it says the page cannot be
displayed - do you have any idea what is wrong?

Thanks!

Joy

Add comment
Simchajoy2000@Yahoo.Com 4 January 2006 20:07:51 permanent link ]
 Ok, silly me, I just needed to add the folder name to the path -
another question - I understand why the CDONTS doesn't work but
Response.Write doesn't work at all either. Can you tell from my code
if I am doing anything wrong?

Thanks!

Joy

Add comment
Larry Bud 4 January 2006 23:16:11 permanent link ]
 
simchajoy2000@yahoo­.com wrote:> Thank you so much Ray, I have done as you instructed and I placed the> folder containing all my html and asp files in C:\Inetpub\wwwroot and> then I created a virtual directory in IIS that points to that folder (I> was supposed to do that right?) but when I say> http://localhost/yo­urpagename.asp - it says the page cannot be> displayed - do you have any idea what is wrong?

If you're using IE, make sure in Internet Options that "Show Friendly
HTTP error messages" is turned OFF.

This way the browser will tell you exactly where the error is occurring
in the ASP. There could be a syntax error on line 1, and you'd never
know it.

Add comment
Ray Costanzo 5 January 2006 02:26:40 permanent link ]
 Show us your current code that you have now, and what does "doesn't work"
mean? Do you get an error? What does it say? Do you get a blank page?

Also, did you read what I wrote about how CDONTS hasn't really been in vogue
since 1999?

Ray at home

<simchajoy2000@yaho­o.com> wrote in message
news:1136394471.442­043.321640@o13g2000c­wo.googlegroups.com.­..> Ok, silly me, I just needed to add the folder name to the path -> another question - I understand why the CDONTS doesn't work but> Response.Write doesn't work at all either. Can you tell from my code> if I am doing anything wrong?>
Thanks!>


Add comment
Firas489@Gmail.Com 5 January 2006 07:04:03 permanent link ]
 Hello simchajoy2000@yahoo­.com,
About the CDOSYS as Ray Costanzo [MVP] said, he is correct, but in
addition when you declare and set the variable, i noticed that you
wrote Set MyCDONTSMail = CreateObject("CDONT­S.NewMail")
Its better to write Set MyCDONTSMail =
Server.CreateObject­("CDONTS.NewMail")
I know that you might say that "what did u add the server, i doesn't
make any difference" but trust me, when u program using Microsoft
programs, everything is possible. For example once i was using
MapPath("Location.m­db") and always getting an error, but couldn't find
it, then i had an idea, which was to add server to the command, so it
looked like this Server.MapPath("Loc­atuo.mdb"), after that the page
worked propoply with no extra problem, and by the way when u click
Ctrl+Space in Microsoft Visual InterDev you will find that MapPath
works without the Server as well as the CreateObject.


Hope this helps


Best Regards
Firas S Assaad

Add comment
Bob Barrows 5 January 2006 15:05:53 permanent link ]
 firas489@gmail.com wrote:> Hello simchajoy2000@yahoo­.com,> About the CDOSYS as Ray Costanzo [MVP] said, he is correct, but in> addition when you declare and set the variable, i noticed that you> wrote Set MyCDONTSMail = CreateObject("CDONT­S.NewMail")> Its better to write Set MyCDONTSMail => Server.CreateObject­("CDONTS.NewMail")


In older versions of IIS, this did make a difference. In newer versions, the
recommendation is to use the vbscript version of CreateObject, rather than
the version provided by the Server object. For more information, see:

http://blogs.msdn.c­om/ericlippert/archi­ve/2004/06/01/145686­.aspx


--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"


Add comment
Paxton 5 January 2006 15:30:43 permanent link ]
 
simchajoy2000@yahoo­.com wrote:> Thank you so much Ray, I have done as you instructed and I placed the> folder containing all my html and asp files in C:\Inetpub\wwwroot and> then I created a virtual directory in IIS that points to that folder (I> was supposed to do that right?) but when I say> http://localhost/yo­urpagename.asp - it says the page cannot be> displayed - do you have any idea what is wrong?>
Thanks!>
Joy

Just a thought.... but are you actually typing
"http://localhost/y­ourpagename.asp" into the address bar of the
browser?

If so, you should replace "yourpagename.asp" with the name of the
directory you created, then "/" then the name of the html file you
created (with ".html" on the end).

/P.

Add comment
Dave Anderson 6 January 2006 00:06:39 permanent link ]
 Bob Barrows [MVP] wrote:> In older versions of IIS, this did make a difference. In newer> versions, the recommendation is to use the vbscript version of> CreateObject, rather than the version provided by the Server object.> For more information, see:> http://blogs.msdn.c­om/ericlippert/archi­ve/2004/06/01/145686­.aspx

How on Earth do you get any recommendation out of Lippert's article?

On the contrary, one of the comments suggests that this approach voids
connection pooling, and that would certainly give me pause.



--
Dave Anderson

Unsolicited commercial email will be read at a cost of $500 per message. Use
of this email address implies consent to these terms. Please do not contact
me directly or ask me to contact you directly for assistance. If your
question is worth asking, it's worth posting.


Add comment
Bob Barrows 6 January 2006 00:31:01 permanent link ]
 Dave Anderson wrote:> Bob Barrows [MVP] wrote:>> In older versions of IIS, this did make a difference. In newer>> versions, the recommendation is to use the vbscript version of>> CreateObject, rather than the version provided by the Server object.>> For more information, see:>> http://blogs.msdn.c­om/ericlippert/archi­ve/2004/06/01/145686­.aspx>
How on Earth do you get any recommendation out of Lippert's article?

Yes, you're right. My bad. Eric made no recommendations. I had a
recommendation made in a post by Egbert Nierop
(http://groups.goog­le.com/group/microso­ft.public.inetserver­.asp.general/msg/
409380a9492fb9c8?hl­=en&) in the back of my mind when I wrote the above. He
had done some testing and come to the conclusion that using the Server
version was not only unnecessary in IIS5+, but that it also impaired
performance.

Here's a another quote:

WEll, quite simple. IIS 3/4 supported transaction management COM integration
using Server.Createobject­. This statement, passes the COM context from ASP
to the inner component.
As of Windows 2000, this is no longer needed because of native COM support
for transactions and context passing, and it even slows down execution. On
windows 2000, it will process exception on components, that have no thread
affinity (C++).
On the contrary, one of the comments suggests that this approach voids> connection pooling, and that would certainly give me pause.>
Yes, me too. But this was not stated by Eric, and was not substantiated by
the person who brought it up.

Bob Barrows
--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.


Add comment
Dave Anderson 6 January 2006 01:05:57 permanent link ]
 Bob Barrows [MVP] wrote:> I had a recommendation made in a post by Egbert Nierop (> http://groups.googl­e.com/group/microsof­t.public.inetserver.­asp.general/msg/4093­80a9492fb9c8?hl=en> &) in the back of my mind when I wrote the above.

Fair enough.


He had done some testing and come to the conclusion that> using the Server version was not only unnecessary in IIS5+,> but that it also impaired performance.

When I read his post, I had a reaction similar to yours below.


On the contrary, one of the comments suggests that this>> approach voids connection pooling, and that would certainly>> give me pause.>
Yes, me too. But this was not stated by Eric, and was not> substantiated by the person who brought it up.

Like you, I would have liked something concrete. And that is why I merely
said it would give me pause. In truth, I do not feel that EITHER assertion
was backed up with substance, so neither would be likely to change my
practices.

If I thought I had a limitless number of ASP-coding days ahead of me, I
might spend some time exploring the issues in order to convince myself one
way or the other. But let's face it -- most of us will be doing less and
less with ASP in the future, so why waste the time looking for a cycle here
and there? It's not as if anyone suggested that either approach would cause
some type of cascading performance issue...



--
Dave Anderson

Unsolicited commercial email will be read at a cost of $500 per message. Use
of this email address implies consent to these terms. Please do not contact
me directly or ask me to contact you directly for assistance. If your
question is worth asking, it's worth posting.


Add comment
Bob Barrows 6 January 2006 14:45:51 permanent link ]
 Dave Anderson wrote:> Bob Barrows [MVP] wrote:>> I had a recommendation made in a post by Egbert Nierop (>> http://groups.googl­e.com/group/microsof­t.public.inetserver.­asp.general/msg/4093­80a9492fb9c8?hl=en>>­ &) in the back of my mind when I wrote the above.>
Fair enough.>
He had done some testing and come to the conclusion that>> using the Server version was not only unnecessary in IIS5+,>> but that it also impaired performance.>
When I read his post, I had a reaction similar to yours below.>
I suspected that would be your response, and after posting the above, tried
to find the post that really convinced me, but could not find it, so as you
say later on in your reply, it's time to move on.


--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"


Add comment
Marc Schlegel 6 October 2006 14:45:07 permanent link ]
 First I want to say HI to the community, this is my first post :-)­

I've several problems with opencms and it seems to be hard to find a
solution.

My first problem, well it's not a real problem but it's annoying me,
is that I want to set the minimum height of my website. I have some
sites which contains not very much content (right now) and it doesn't
look good when the page is only 100px high. I tried to find a property
in the root-folder for my html-pages.

The second is a little bit tricky. I have several picture-galleries (I
am studying abroad in Iceland and I have a lot of nice pricture :-)­ )
and I want to use the structered-content "slideshow". The problem is
that when i look at the site the pictures are not shown, even when I
go to the details-view. The pictures are only displayed in the when I
select the "original" version. Is there a problem when OpenCMS tries
to downsize the pictures?

Last but not least I have a problem with a jsp-page. I have a submenu
(folder) where I want to introduce some friends from Iceland. My idea
was only to add a page for each friend and the index.jsp is (a
overview of all) should be created automatically.

<%
// create a JSP action element
org.opencms.jsp.Cms­JspActionElement cms = new
org.opencms.jsp.Cms­JspActionElement(pag­eContext, request, response);
org.opencms.site.Cm­sSiteManager siteManager = new
org.opencms.site.Cm­sSiteManager();


// load the template head


cms.include("/syste­m/modules/org.opencm­s.frontend.templateo­ne/templates/main",
"head");
---> Here I try to get the row-column-template­-element
<------------------­


cms.include("/syste­m/modules/org.opencm­s.frontend.templateo­ne/templates/main",
"main");
%>
<h1>Hallo</h1>
<%
// load the template foot


cms.include("/syste­m/modules/org.opencm­s.frontend.templateo­ne/templates/main",
"foot");
%>

You can see that I am trying to get the row-column-element --> but I
don't know how.
And I don't know how I can get all pages within my subfolder
("/iceland/pages/fr­iend")....I tried it with the SiteManager and I
checked the API but I couldn't find it (maybe I am blind).

Any help is appreciated

Best regards
--Marc


___________________­____________________­________
This mail is sent to you from the opencms-dev mailing list
To change your list options, or to unsubscribe from the list, please visit
http://lists.opencm­s.org/mailman/listin­fo/opencms-dev

Add comment
Jonathan Woods 7 October 2006 07:55:36 permanent link ]
 Hi, Marc.

1. This isn't really an OpenCms question, of course... There's a CSS
attribute which you can apply to the body element, as far as I remember, but
not all browsers will honour it. Try Googling for "css minimum body height"
or something similar. Failing that, you can include an invisible 1px-by-1px
GIF in your page layout (whether you use tables or CSS) and give that a
height equal to your minimum height.

2. I don't use template one, so I don't know what you mean by
row-column-template­-head etc. But if you're having problems including a
template element, you could always just copy and paste some code. Maybe
someone else can suggest something better.

3. CmsSiteManager is a class best left to OpenCms core code. Instead,
org.opencms.file.Cm­sObject contains all the methods you need - e.g.
getFilesInFolder(St­ring relativeFolderName)­. Note (i) you can get an
instance of CmsObject from CmsJspActionElement­, (ii) folder and file paths
are generally relative to the site root (i.e. you won't need to include
"/sites/default" or whatever), (iii) methods like getFilesInFolder() either
return Lists with String members (being file/folder paths) or Lists of
CmsResource (being the OpenCms abstraction for file/folder resources) -
can't recall which. CmsResource has useful methods on it too.

Jon

-----Original Message-----
From: opencms-dev-bounces­@opencms.org
[mailto:opencms-dev-bounces@opencms.org] On Behalf Of Marc Schlegel
Sent: 06 October 2006 12:45
To: opencms-dev@opencms­.org
Subject: [opencms-dev] Beginner Problems

First I want to say HI to the community, this is my first post :-)­

I've several problems with opencms and it seems to be hard to find a
solution.

My first problem, well it's not a real problem but it's annoying me, is that
I want to set the minimum height of my website. I have some sites which
contains not very much content (right now) and it doesn't look good when the
page is only 100px high. I tried to find a property in the root-folder for
my html-pages.

The second is a little bit tricky. I have several picture-galleries (I am
studying abroad in Iceland and I have a lot of nice pricture :-)­ ) and I
want to use the structered-content "slideshow". The problem is that when i
look at the site the pictures are not shown, even when I go to the
details-view. The pictures are only displayed in the when I select the
"original" version. Is there a problem when OpenCMS tries to downsize the
pictures?

Last but not least I have a problem with a jsp-page. I have a submenu
(folder) where I want to introduce some friends from Iceland. My idea was
only to add a page for each friend and the index.jsp is (a overview of all)
should be created automatically.

<%
// create a JSP action element
org.opencms.jsp.Cms­JspActionElement cms = new
org.opencms.jsp.Cms­JspActionElement(pag­eContext, request, response);
org.opencms.site.Cm­sSiteManager siteManager = new
org.opencms.site.Cm­sSiteManager();


// load the template head


cms.include("/syste­m/modules/org.opencm­s.frontend.templateo­ne/templates/main
",
"head");
---> Here I try to get the row-column-template­-element
<------------------­


cms.include("/syste­m/modules/org.opencm­s.frontend.templateo­ne/templates/main
",
"main");
%>
<h1>Hallo</h1>
<%
// load the template foot


cms.include("/syste­m/modules/org.opencm­s.frontend.templateo­ne/templates/main
",
"foot");
%>

You can see that I am trying to get the row-column-element --> but I don't
know how.
And I don't know how I can get all pages within my subfolder
("/iceland/pages/fr­iend")....I tried it with the SiteManager and I checked
the API but I couldn't find it (maybe I am blind).

Any help is appreciated

Best regards
--Marc


___________________­____________________­________
This mail is sent to you from the opencms-dev mailing list To change your
list options, or to unsubscribe from the list, please visit
http://lists.opencm­s.org/mailman/listin­fo/opencms-dev



___________________­____________________­________
This mail is sent to you from the opencms-dev mailing list
To change your list options, or to unsubscribe from the list, please visit
http://lists.opencm­s.org/mailman/listin­fo/opencms-dev

Add comment
Marc Schlegel 9 October 2006 01:51:47 permanent link ]
 Also thanks for your help

I am now able to get the needed Resources but I can't do anything with
it (or not that what I want). I thought it is possible to get an
Instance of CmsSite (I want to read the title )?

But my biggest problem is still that the pictures are not shown. Until
this isn't fixed I can't set the site online

Thx again.
-- Marc


-------- Jon wrote -----------
. This isn't really an OpenCms question, of course... There's a CSS
attribute which you can apply to the body element, as far as I
remember, but
not all browsers will honour it. Try Googling for "css minimum body
height"
or something similar. Failing that, you can include an invisible
1px-by-1px
GIF in your page layout (whether you use tables or CSS) and give that a
height equal to your minimum height.

2. I don't use template one, so I don't know what you mean by
row-column-template­-head etc. But if you're having problems including a
template element, you could always just copy and paste some code. Maybe
someone else can suggest something better.

3. CmsSiteManager is a class best left to OpenCms core code. Instead,
org.opencms.file.Cm­sObject contains all the methods you need - e.g.
getFilesInFolder(St­ring relativeFolderName)­. Note (i) you can get an
instance of CmsObject from CmsJspActionElement­, (ii) folder and file paths
are generally relative to the site root (i.e. you won't need to include
"/sites/default" or whatever), (iii) methods like getFilesInFolder()
either
return Lists with String members (being file/folder paths) or Lists of
CmsResource (being the OpenCms abstraction for file/folder resources) -
can't recall which. CmsResource has useful methods on it too.

Jon

-----Original Message-----
From: opencms-dev-bounces­@opencms.org
[mailto:opencms-dev-bounces@opencms.org] On Behalf Of Marc Schlegel
Sent: 06 October 2006 12:45
To: opencms-dev@opencms­.org
Subject: [opencms-dev] Beginner Problems

First I want to say HI to the community, this is my first post :-)­

I've several problems with opencms and it seems to be hard to find a
solution.

My first problem, well it's not a real problem but it's annoying me,
is that
I want to set the minimum height of my website. I have some sites which
contains not very much content (right now) and it doesn't look good
when the
page is only 100px high. I tried to find a property in the root-folder for
my html-pages.

The second is a little bit tricky. I have several picture-galleries (I am
studying abroad in Iceland and I have a lot of nice pricture :-)­ ) and I
want to use the structered-content "slideshow". The problem is that when i
look at the site the pictures are not shown, even when I go to the
details-view. The pictures are only displayed in the when I select the
"original" version. Is there a problem when OpenCMS tries to downsize the
pictures?

Last but not least I have a problem with a jsp-page. I have a submenu
(folder) where I want to introduce some friends from Iceland. My idea was
only to add a page for each friend and the index.jsp is (a overview of
all)
should be created automatically.

<%
// create a JSP action element
org.opencms.jsp.Cms­JspActionElement cms = new
org.opencms.jsp.Cms­JspActionElement(pag­eContext, request, response);
org.opencms.site.Cm­sSiteManager siteManager = new
org.opencms.site.Cm­sSiteManager();


// load the template head


cms.include("/syste­m/modules/org.opencm­s.frontend.templateo­ne/templates/main
",
"head");
---> Here I try to get the row-column-template­-element
<------------------­


cms.include("/syste­m/modules/org.opencm­s.frontend.templateo­ne/templates/main
",
"main");
%>
<h1>Hallo</h1>
<%
// load the template foot


cms.include("/syste­m/modules/org.opencm­s.frontend.templateo­ne/templates/main
",
"foot");
%>

You can see that I am trying to get the row-column-element --> but I don't
know how.
And I don't know how I can get all pages within my subfolder
("/iceland/pages/fr­iend")....I tried it with the SiteManager and I checked
the API but I couldn't find it (maybe I am blind).

Any help is appreciated

Best regards
--Marc


___________________­____________________­________
This mail is sent to you from the opencms-dev mailing list
To change your list options, or to unsubscribe from the list, please visit
http://lists.opencm­s.org/mailman/listin­fo/opencms-dev

Add comment
matabaro 14 November 2006 14:42:26 permanent link ]
 i want some one to help me in Asp/php.(:|­
Add comment
 

Add new comment

As:
Login:  Password:  
 
 
  
 
Пожалуйста, относитесь к собеседникам уважительно, не используйте нецензурные слова, не злоупотребляйте заглавными буквами, не публикуйте рекламу и объявления о купле/продаже, а также материалы нарушающие сетевой этикет или УК РФ.


QAIX > ASP web-programming > Beginner Problems 14 November 2006 14:42:26

see also:
Confused about fopen r+ mode
string contains X
Shopping-carts
пройди тесты:
see also:
The Apache HTTP Server can be…
problem with TNSLSNR
how do i start this program

  Copyright © 2001—2008 QAIX
Idea: Miсhael Monashev
Помощь и задать вопросы можно в сообществе support.qaix.com.
Сообщения об ошибках оставляем в сообществе bugs.qaix.com.
Предложения и комментарии пишем в сообществе suggest.qaix.com.
Информация для родителей.
Write us at:
If you would like to report an abuse of our service, such as a spam message, please .