| Online registration question |
|
 |
Index ‹ Web Programming ‹ Frontpage Client
|
- Previous
- 1
- ASP/Active Server Pages >> Random HTTP/1.1 403 ForbiddenWhen redirecting an ASP page using the following code:
document.location.href =
"MatterBalanceDetails2.asp?matterdiwor=<%=Request.QueryString("matterdiwor")%>" & _
"&balancecode=<%=Request.QueryString("balancecode")%>" & _
"&balancename=<%=Request.QueryString("balancename")%>" & _
"&posted=<%=Request.QueryString("posted")%>" & _
"&billed=<%=Request.QueryString("billed")%>" & _
"&startdate=<%=Request.QueryString("startdate")%>" & _
"&enddate=<%=Request.QueryString("enddate")%>" & _
"&transdiwor=" &
lTransDiwor & _
"&mattername=<%=Server.URLEncode(msMatterName)%>" & _
"&mattercode=<%=Server.URLEncode(msMatterCode)%>" & _
"&location=<%=msLocation%>"
I sometime get a â??HTTP/1.1 403 Forbiddenâ?? error
The address in the window title looks correct. However looking at the IIS
log file the URL has no GET or POST, but instead has a spurious number of
characters as follows:
2008-02-21 08:42:17 192.0.0.46 PILSYS\DarrenB 192.0.0.70 80
%09%09%09%09%09%09%09%3Cxsl%3Aattribute+name%3D%22class%22%3Etext_small+text_strong%3C%2Fxsl%3Aattri
/lwc/ClientMatterEnquiry/MatterBalanceDetails2.asp
matterdiwor=28815&balancecode=WIP&balancename=Work%20in%20Progress&posted=&billed=&startdate=&enddate=&transdiwor=531&mattername=Mrs+Elaine+Mowat&mattercode=MOW%2F0001%2F00001&location=Client%20Matter%20Enquiry%20|%20Matter%20Accounts
403
Mozilla/4.0+(compatible;+MSIE+7.0;+Windows+NT+6.0;+SLCC1;+.NET+CLR+2.0.50727;+.NET+CLR+3.0.04506;+InfoPath.2)
Any ideas why this is happening?
--
Gordon Smith
- 2
- 3
- IIS >> Set up IIS to browse a folder on another domain controllerConsider the following scenario: we have two domain controllers in the same
domain called dc1 and dc2. On dc2 IIS is being used for internal web
applications and one of these applications is called 'app'. Our users browse
to \\dc2\app to view and use the web application. This works very well.
Now we wish to allow the users of this web application to browse a folder
which is located on dc1. The folder is shared as 'share'. On dc1 IIS has not
been installed.
We got this working with 'Digest authentication for Windows domain servers',
but that requires the user to log in every time they wish to use the web
application. And that is not what they want.
Is it possible to use 'Integrated Windows authentiction' and still be able
to browse that folder on dc1?
We have tried many scenarios, but every time the result is the same; the
user cannot browse the folder on dc1. For example:
1. We created a virtual directory that is redirected to \\dc1\share.
2. We created a directory at the hard disk under the root directory of the
web application and redirected that directory to \\dc1\share.
3. We used a test server dc3, installed IIS, created a virtual directory in
the default web site that looks at a local directory. At dc2 we repeated
exercises 1 and 2 by redirecting to http://dc3/virtualdirectory.
We are currently at a loss. What else can we do to accomplish this?
HJ
- 4
- 5
- ASP.Net >> page life cycle problemI have a textbox in a form that saves information to a database. A linkbutton activates a function from the user's click to save
the data. A leading string of text is added to the content before saving.
I want to retrieve the saved info and have the retrieved data displayed when the page reloads.
I can't get the retrieved data to display. I can only get the old version of a previous save .
How do I save then retrieve the correct version in the postback -- any examples in vb would help
- 6
- 7
- Frontpage Client >> Frames in Shared Borders?!Is it possible to have frames with a shared border? i.e. If the content on a
page is more than a user can view without scrolling down, when they do the
navigation bars are not visible. Can anyone advise the best way around this?
The site is already built by the way
- 8
- ASP.Net >> code called from web page or webserviceHi,
I have a small piece of code that is used by both a web page and by a
web service. I'd like some different behaviour depending on whether it
is called by the page or by the service.
In the piece of code, I can determine the calling source (page/service)
by checking to see if System.Web.HttpContext.Current.Session is null
(which it will be for service and won't be for page).
The thing is--I would like for the piece of code to be able to look up a
bit of information at this point. For the page, that bit of information
is stored in the HttpSessionState. How can I store this information so
that when the code is called from the web service it can be looked up?
In this case, unfortunately, passing parameters directly isn't a good
option for me.
Thanks for any help you can give.
-Casey
- 9
- Frontpage Client >> Changing Font or Size on Navigation BarHave a link bar on my page, and cannot fit the text that I would like onto
the buttons. The solution would be to either expand the size of the buttons,
change the size of the font, or have two lines of text on the button (or some
combination of the above)...problem is, I cannot figure out how to do any of
these......the buttons are based on a theme....
Can anyone help??? Thanks.
Andy
- 10
- ASP.Net >> FileNotFoundExceptionHi all,
I have a problem with my asp.net application.
I can't read a file that is on another server (10.1.8.15), while my
application in on 10.1.8.14.
In that file I have a shared folder, within the file "txt".
I've used the following code:
bool present;
FileInfo f1 = new FileInfo(@"\\10.1.8.15\CDG\CDG_CD.txt");
if (f1.Exists)
{ present = true; }
else
{lblError.Text += ". Missing file " + f1.ToString();}
but always says me that the file does not exist
(FileNotFoundExcpetion).
If I run the command \\10.1.8.15\CDG\CDG_CD.txt from Start - Run, I can
see the file.
What's the problem?
Thanks a lot.
Luigi
- 11
- ASP.Net >> Postback or Click on Run-time created objectI have a database table of x elements. I need to loop through the database
table and add a checkbox for each entry to an asp:Table object. This I can
do.
Dim tRow As New TableRow
Dim tCell As New TableCell
Dim cbDT As New CheckBox
tblDTCodes.Rows.Add(tRow)
cbDT.Text = reader(0)
cbDT.Checked = False
tCell.Controls.Add(cbDT)
tRow.Cells.Add(tCell)
Question: How do I add a "Clicked" or "Checked" event to these new
checkboxes?
Question: If I can't do that, how do I interpret a PostBack from these
checkboxes?
- 12
- 13
- IIS >> .avi files visualizationHello,
I have a w2k server with IIS. When I put a .avi file in my web, when I try
to visualize the files with internet explorer Windows Media is istarted,
connects but nothing is shown.
Can anyone help me?
Thanks
- 14
- ASP.Net >> populating asp:dropdownlist programmaticallyI need to display a drop down list which holds up to 250 listitems.
I'd like to create this programmatically rather than have to hardcode it
into the page.
For example
<asp:DropDownList id="numYears" runat="server" name="numYears">
<asp:ListItem Value="0" Text="0 years" Selected="true" />
<asp:ListItem Value="1" Text="1 year"/>
<asp:ListItem Value="2" Text="2 year"/>
<asp:ListItem Value="2" Text="2 year"/>
<asp:ListItem Value="3" Text etc............. up to 250 years
Thanks in advance..
Simon Ames
- 15
- Frontpage Client >> Watch NFL Games OnlineWatch NFL Games Online!
For every one who wants to watch the games online because they dont live in the teams town or are at work i found a site that has basically every game covered. Its perfect if you have afford a monthly $70 direct tv nfl access subscription. they got a bunch of channels
The sites http://nflonline.wizhoo.com
|
| Author |
Message |
SYWalters

|
Posted: Fri Dec 19 10:25:21 CST 2003 |
Top |
Frontpage Client >> Online registration question
Hi folks -
I need a bit of help. The organization I belong to is asking me questions
about online registration for a seminar in 2006. I know it would have to be
some sort of a secure site because the attendees would be entering their
charge card numbers but beyond that - clueless.
What kind of things should I be looking for in a webhost? (I have one
inmind - I just need to know the kind of things to ask about.) I don't need
any special software, do I? Couldn't it be done with a form? Can data from a
form be saved in the server until the registrar extracted it? It doesn't
have to be sent as an email, does it?
I did warn you- I'm clueless but willing to learn. Where can I start?
JoAnn
Web Programming427
|
| |
|
| |
 |
Tom

|
Posted: Fri Dec 19 10:25:21 CST 2003 |
Top |
Frontpage Client >> Online registration question
"JL Amerson" wrote in message
>
> I need a bit of help. The organization I belong to is asking me questions
> about online registration for a seminar in 2006. I know it would have to
be
> some sort of a secure site because the attendees would be entering their
> charge card numbers but beyond that - clueless.
>
Does your organization have a merchant account so it can process the credit
cards?
For this you might want to consider some type of service like paypal or some
of the others transaction processing companies. Since you are new to this it
might make this part of your site easier to produce.
> What kind of things should I be looking for in a webhost? (I have one
> inmind - I just need to know the kind of things to ask about.) I don't
need
> any special software, do I?
Web hosts are a plenty... and it is a matter of preference and experience.
If you are going to us Front Page... the host will need to have front page
extensions installed. I am a reseller for cihost.com so you might want look
at them. They have both windows and unix servers. The unix plans are
cheaper. There have been a couple of "best host" threads recently you might
want to give them a look.
>Couldn't it be done with a form? Can data from a
> form be saved in the server until the registrar extracted it? It doesn't
> have to be sent as an email, does it?
>
Yes...
Yes with a database.....
No
> I did warn you- I'm clueless but willing to learn. Where can I start?
>
FrontPage has some pretty neat database tools and you may just be able to do
this with those tools but you might also have to learn a little asp or php
scripting language.
Off hand I do not know of any Front page database tutorials... but I bet
there are plenty out there.... search around you should find them.
You might also check out
www.planet-source-code.com (the asp or php sections)
They just may have a similar program already written that you can get.
also look at www.hotscripts.com
You might also search at www.aspin.com for this type of program.
Best to you
Tom Gahagan
eThomaston.com
|
| |
|
| |
 |
JL

|
Posted: Fri Dec 19 13:31:40 CST 2003 |
Top |
Frontpage Client >> Online registration question
"Tom Gahagan" <EMail@HideDomain.com> wrote in message
news:%EMail@HideDomain.com...
(snip)
> Does your organization have a merchant account so it can process the
credit
> cards?
>
> For this you might want to consider some type of service like paypal or
some
> of the others transaction processing companies. Since you are new to this
it
> might make this part of your site easier to produce.
Yes they do have a merchants account. What words could I "Google" to find
out who offers this service? I don't think they'll want to use Paypal
because Paypal charges a fee and they are already paying fees to use charge
cards. Makes it tough for non-profit organizations.
(snip again)
> Web hosts are a plenty... and it is a matter of preference and experience.
> If you are going to us Front Page... the host will need to have front page
> extensions installed. I am a reseller for cihost.com so you might want
look
> at them. They have both windows and unix servers. The unix plans are
> cheaper. There have been a couple of "best host" threads recently you
might
> want to give them a look.
We have a host in mind who uses FP2000 and 2002 extensions. And I know,
thanks to this group, that FP2003 uses 2002 extensions. They are local and
have a good customer service. Plus we can get a really great rate from them.
(snip again............)
> >Couldn't it be done with a form? Can data from a
> > form be saved in the server until the registrar extracted it? It doesn't
> > have to be sent as an email, does it?
> >
>
> Yes...
> Yes with a database.....
> No
I've been playing with forms. They are pretty cool. I've been using the
Wizard and the only problem is that you can't go back into the Wizard to
edit what you've done. I have a little time to learn. The seminar is in
2006.
(one last snip)
> FrontPage has some pretty neat database tools and you may just be able to
do
> this with those tools but you might also have to learn a little asp or php
> scripting language.
>
> Off hand I do not know of any Front page database tutorials... but I bet
> there are plenty out there.... search around you should find them.
>
> You might also check out
>
> www.planet-source-code.com (the asp or php sections)
>
> They just may have a similar program already written that you can get.
>
> also look at www.hotscripts.com
>
> You might also search at www.aspin.com for this type of program.
I'm going to have to learn about databases! I think this might be the way to
go. I did take an online class on Access but that was two years ago and I've
never used it. Translation: I understand what a relational database is, I
just can't use it. But I am a willing student.
> Best to you
> Tom Gahagan
> eThomaston.com
Thank you so much for answering my questions! I love the MS newsgroups for
things like this. Most people are supportive and helpful for those of us who
are novices.
Happy Holidays...............................JoAnn
|
| |
|
| |
 |
Tom

|
Posted: Fri Dec 19 15:21:37 CST 2003 |
Top |
Frontpage Client >> Online registration question
> Yes they do have a merchants account. What words could I "Google" to find
> out who offers this service? I don't think they'll want to use Paypal
> because Paypal charges a fee and they are already paying fees to use
charge
> cards. Makes it tough for non-profit organizations.
>
Then you really do not HAVE to use a service like paypal you can run the
cards yourselves. Your host should have info on how to connect to their
secure site services. (this is another thing to make sure your host does
provide)
You might want to take a look at some of the shopping cart programs that
have secure order pages. This might give you enough of a jump start so you
can adapt it for your registration program.
>
> I'm going to have to learn about databases! I think this might be the way
to
> go. I did take an online class on Access but that was two years ago and
I've
> never used it. Translation: I understand what a relational database is, I
> just can't use it. But I am a willing student.
>
As I mentioned to Kelly in another thread....
Learning good database design is MUCH MORE important than learning a
particular database program. Good design can be applied to ANY system.
Also..... start learning sql..... again... it can be used by just about any
system.
Access is a good start and will be fine if your site does not have a lot of
traffic.... however... it does have it's limits on the web. Go ahead and
invest some time (in addition to Access) and learn MySql..... as it is very
popular (and growing) on the web and you can get into it for free. (best
price of all)
> Thank you so much for answering my questions! I love the MS newsgroups for
> things like this. Most people are supportive and helpful for those of us
who
> are novices.
>
> Happy Holidays...............................JoAnn
This is a great place and has helped me so much that I am trying to give a
little back. There are folks here with a lot more expertise than I have....
:) but I think I've given you some good.... "get started" advise. I've been
doing database work since 1989 so I have a lot more info on that topic than
the web..... only been in it for a couple of years and just in the last 6
months on a full time basis. You have a good attitude so you will do fine!
And have a great Christmas yourself........
Tom Gahagan
eThomaston.com
ps.... you should really look at some of those sites that I mentioned.....
you just might find a registration system that you can adapt....... and
studying the code and design is a good way to learn.
|
| |
|
| |
 |
Mike

|
Posted: Fri Dec 19 15:58:36 CST 2003 |
Top |
Frontpage Client >> Online registration question
: Hi folks -
:
: I need a bit of help. The organization I belong to is
: asking me questions about online registration for a
: seminar in 2006. I know it would have to be some sort of
: a secure site because the attendees would be entering
: their charge card numbers but beyond that - clueless.
:
: What kind of things should I be looking for in a webhost?
: (I have one inmind - I just need to know the kind of
: things to ask about.) I don't need any special software,
: do I? Couldn't it be done with a form? Can data from a
: form be saved in the server until the registrar extracted
: it? It doesn't have to be sent as an email, does it?
:
: I did warn you- I'm clueless but willing to learn. Where
: can I start?
:
: JoAnn
The only real concerns in the host are Server Extensions and
their customer support. You really don't need any special
software, and all of your data can be stored in a database.
The only issues appearing to me are all related to the
credit card info. Are you processing the charges now or
later? The card issuers are now beginning to ask for
CID/CVV2/CVC2 for non POS sales- but they also state you can
not store the information for more than 10 minutes. The
rest of the card information they want triple-DES encrypted.
Mike
|
| |
|
| |
 |
JL

|
Posted: Fri Dec 19 23:59:43 CST 2003 |
Top |
Frontpage Client >> Online registration question
"Mike Mueller" <EMail@HideDomain.com> wrote in message
news:EMail@HideDomain.com...
(snip)
> The only real concerns in the host are Server Extensions and
> their customer support. You really don't need any special
> software, and all of your data can be stored in a database.
Got that part covered already.
> The only issues appearing to me are all related to the
> credit card info. Are you processing the charges now or
> later? The card issuers are now beginning to ask for
> CID/CVV2/CVC2 for non POS sales- but they also state you can
> not store the information for more than 10 minutes. The
> rest of the card information they want triple-DES encrypted.
Good point! I already know about CID numbers because my last employer used
them for phone orders. I will ask about when the charges are processed
because I honestly don't know. Who does the encrypting or where does that
occur? That sounds like something we need to ask about.
I love how y'all know this kind of stuff!
|
| |
|
| |
 |
Mike

|
Posted: Mon Dec 22 08:13:15 CST 2003 |
Top |
Frontpage Client >> Online registration question
: (snip):
:: The only issues appearing to me are all related to the
:: credit card info. Are you processing the charges now or
:: later? The card issuers are now beginning to ask for
:: CID/CVV2/CVC2 for non POS sales- but they also state you
:: can
:: not store the information for more than 10 minutes. The
:: rest of the card information they want triple-DES
:: encrypted.
:
: Good point! I already know about CID numbers because my
: last employer used them for phone orders. I will ask
: about when the charges are processed because I honestly
: don't know. Who does the encrypting or where does that
: occur? That sounds like something we need to ask about.
:
: I love how y'all know this kind of stuff!
I believe that the encryption would be on the database that
is storing all of that information. I basically avoid all
of this by not storing any of the credit card information
electronically- we print 3 copies of the order ( 1 with CID,
2 without) and destroy the CID version after we receive
approval. The remaining 2 copies are split between our copy
and the one sent with the package.
Mike
|
| |
|
| |
 |
| |
 |
Index ‹ Web Programming ‹ Frontpage Client |
- Next
- 1
- ASP.Net >> Page RefreshHi there,
haven't touched my ASP.NET app for some time, but looking back at it now I
see there ought to be a better way of handling one of its functions.
I have two list boxes, where items in the Left hand box can be moved to the
Right hand box using buttons:
Add
Remove
also there are move up and down buttons to change the order in which the
items in the right hand box appear.
Now it is these buttons that are painfully slow as I don't know how to
implement drag and drop, so one has to click it up or down one row at a
time, plus each click causes the complete screen to refresh itself each
time, and so it goes blank and then comes back with the item moved.
It is of course my inexperience in these matters that is letting me down
here, so can someone please give me some pointers on how to make this
function even a little more elegant?
Many thanks in advance
Colin B
- 2
- ASP.Net >> Can't remove cookies!Hi,
I have a login page where if the user wants his access codes to be saved are
set into a cookie. In the logout page, I want to delete those cookies. I
tried this and this is not working at all:
if (Request.Cookies[COOKIE_USER] != null
&& Request.Cookies[admin.COOKIE_PSWD] != null)
{
Response.Cookies[COOKIE_USER].Value = null;
Response.Cookies[COOKIE_PSWD].Value = null;
Response.Cookies.Remove(COOKIE_USER);
Response.Cookies.Remove(COOKIE_PSWD);
}
If I do a response.write like this right after or on another page, it shows
that the cookies are still set:
Response.Write((Request.Cookies[COOKIE_USER] == null) + " " +
Request.Cookies[COOKIE_USER].Value + " ");
Response.Write((Request.Cookies[COOKIE_PSWD] == null) + " " +
Request.Cookies[COOKIE_PSWD].Value);
Why is this not working? How do we remove user's cookie?
Thanks
Stephane
- 3
- 4
- ASP.Net >> I've Broken Visual Studioactually, i've broken all my web apps - I got a new pc and tried to rebuild
the applications but I am having no luck.
1) my debugger will not run - I get the unable to start debugging on the
web server. I've added everyone i can think of to the debuggers group, my
security looks good on the virtual directory in iis. What else could it be?
The app runs fine if I start without debugging. Please help.
2) how do I REBUILD my projects so they work. I am so frustrated with this
I cannot tell you.
- 5
- ASP.Net >> Dataset from a Dataset ?I have One Dataset with Invoice Data for 5 Customers.
I have 5 GridView Controls, and I want to display each Customer Records in
each GridView, how can I ?
Can I create a dataset from existing Dataset for each customer, so that I
can set the datasouce of gridview controls or anything similar.
Any idea please ?
Best Regards,
Luqman
- 6
- ASP/Active Server Pages >> Refresh and redirectHi!
I have a framset and I want to refresh the bottom.asp whenever i do a change
in Input.asp so that bottom.asp reflect the changes made? How do I do
this???
I would also like to bee redirected back to where I came from. I use
ONCLICK="window.history.go(-1)" on a button in a form, but how do I do this
on an asp side that only have asp code and nothing that shows to the user?
Hope someone can help me.
best regards
Hege
- 7
- IIS >> event id 203Hello
I have recently built a W2K3 server with IIS installed, only for FTP services.
I disabled the anonymous accoutn associated with this as I do not believe it
will be used.
I am receiving an error ion the application log - event ID 203. The user
could not save the data LLSUSER.LLS. The data is in the error code.
I cannot seem to find much on the MS Site in this regards and was wondering
if anyone could shed some light.
Thank you,
Mark Clark
- 8
- ASP.Net >> Initializing Offline cacheHi,
I've recently installed .NET 2003 onto a computer and am experiencing a long
(4-5 minute) delay in this step. I do not have this problem on my laptop.
Any idea why this step is taking so long?
Thanks,
Steve
- 9
- ASP.Net >> Update window.returnValue from Server SideIs there a way for me to update this returnValue from server side?
(without depending on JavaScript or injecting any JavaScript).
Besides:
If I use RegisterStartupScript, do I need to de-register it? If yes,
when?
TIA.
- 10
- ASP.Net >> Use of connection pooling?dear all,
i have an application which could have more than 150 users, I have set it up
to use windows integrated authentification.
What I have to do to be sure that my application will use connection pooling ?
- 11
- 12
- 13
- ASP.Net >> OpenFileDialog vs JavascriptHi All,
I was wondering if it is possible to use(if it will work) the OpenFileDialog
class in ASP.NET. Currently I am using the classic javascript
but I have I need to customize the browse button.
Does anyone knows some good source of information?
Thank you for your time.
Frank
- 14
- ASP.Net >> Recent internet explorer update and smart navigationRecently a new windows update for internet explorer was released which
seems to have broken stylesheets with smart navigation.
The first request for the page works fine, but any subsequent postbacks
when smart navigation is applied results in internet explorer not
applying the style sheet.
Has anyone else had this problem and found a solution as at the moment
I've had to disable smart navigation on the page.
- 15
- ASP.Net >> First Try With DataListHello, I am trying the DataList control for the first time and I am not
able to get the information to show up in the control.
I know that there is data in my data table.
My DataList has a field which is bound to a column in my data table with
the following code..
<ItemTemplate>
<asp:Button Text="Edit" CommandName="Select" Runat="server">
</asp:Button>
<%# DataBinder.Eval(Container.DataItem, "Narrative" ) %>
</ItemTemplate>
I use the following code to bind my dataList to the datatable.
dlHighlights.DataSource=dtHighlights;
dlHighlights.DataBind();
The statements above execute, but no data is displayed. Any Ideas as to
why?
|
|
|