| PBM: Authentication popup when uploading from a web dialog |
|
 |
Index ‹ Web Programming ‹ ASP/Active Server Pages
|
- Previous
- 1
- Frontpage Client >> link bars not working. my server runs FP extentions. help?I have just learned about Dynamic Web Templates within Frontpage. I created
my first one, but the link bars are not working (not appearing on the page)
when I publish. According to the online class about link bars, my server has
to either run frontpage extentions "or" run sharepoint. The link bars should
work since my server runs Frontpage extentions. It doesn't. Anyone know why?
- 2
- ASP.Net >> dynamic table control with sql databaseHello group,
Can somebody help me to create a dynamic table control from an sql database
?
I don't know exacly where I have to start.
Any tip, link to the web is ok.
Thx in advance!
grz
Bernie V
--
http://www.djberniev.be
- 3
- ASP/Active Server Pages >> Issue with numeric variablesHello,
I recently moved our website to a new server (Windows 2000 / IIS 5 - same as
the previous server), and now I get type mismatch errors whenever a variable
is compared against a numeric value, unless I use the cInt function to
convert it to an explicit integer type.
For example, the following code:
dim sRecordCount
[open a database and assign the record count to the above variable...]
if sRecordCount > 0 then ...
On the new server I am forced to use: if cInt(sRecordCount) > 0 then ...
I can't figure out what has changed, if anything. Same OS version, same IIS
version.
Any ideas?
Thanks.
- 4
- ASP.Net >> Non localhost access in Windows 2003I have a web application hosted in a Windows 2003 server with IIS 6.0, whose
session management works if i access it as http://localhost/mywebapp , but
does not work if i use it as http://MyWebServer/mywebapp . Any idea why this
could be ?
Regards,
Chak.
- 5
- Frontpage Client >> homepage won't publish changesHello,
My homepage won't publish changes. It says its it published
sucessufully. Could this be my hosters fault? Other pages in my website
publish fine.
Thanks
--
Louis Johnson MFB
Microsoft Frontpage Beginner
http://www.Bahamalouie.com
- 6
- Frontpage Client >> Importing PowerPointI have saved my PowerPoint as a webpage and imported it into my FrontPage website http://safepayrollcard.com (easy by the way) but the problem is when I try to edit PowerPoint from my browser directly on the web it tells me the path or file name safepayrollcard.com/PowerPointpresentation.htm is invalid. Please check the path and the file name are correct. Help! Thank you in advance!
- 7
- Frontpage Client >> Cut & Paste html code into FrontpageHaving trouble when I paste some code from clipboard to a frontpage htm
file. The <>, etc, are copied wrong and I have to go back and manually edit
the file, almost to the point of a rewrite.
This is what it should look like:
<title>tima thinking outloud.</title>
This is how it is pasted:
<title>tima thinking
outloud.</title>
It works in Dreamweaver and I'm sure it should work in Frontpage.
Any ideas on how to get this to work?
Thanks,
Greg
- 8
- ASP.Net >> Cannot delete fileI'm getting this exception when trying to delete a file:
System.UnauthorizedAccessException: Access to the path
"d:\root\sigma\anexos\" is denied.
the thing is that i can save files in this folder, but cannot delete.
I enabled the advanced folder security in XP, gave full access to ASPNET
and IUSR_MACHINENAME users to this folder. Finally I gave full access to
"All" user and tried impersonating.... no sucess..
I can create files but cannot delete.
Any ideas???
- 9
- ASP.Net >> ASPX database connection problem********************
My code:
********************
<%@ Page Language="VB" debug="true" %>
<%@ Import Namespace="System.Data" %>
<%@ Import Namespace="System.Data.OleDb" %>
<script language="VB" runat="server">
sub Page_Load(Sender as Object, e as EventArgs)
'set up connection
dim objConn as new OleDbConnection _
("Provider=Microsoft.Jet.OLEDB.4.0;" & _
"Data Source=c:\ASPNET\data\banking.mdb")
'open connection
dim objCmd as OleDbDataAdapter = new
OleDbDataAdapter _
("select * from tblUsers", objConn)
'fill dataset
dim ds as DataSet = new DataSet()
objCmd.Fill(ds, "tblUsers")
'select data view and bind to server control
MyDataList.DataSource = ds.Tables("tblUsers"). _
DefaultView
MyDataList.DataBind()
end sub
</script>
<html><body>
<ASP:DataList id="MyDataList" RepeatColumns="2"
RepeatDirection="Vertical" runat="server">
<ItemTemplate>
<div style="padding:15,15,15,15;font-size:10pt;
font-family:Verdana">
<div style="font:12pt verdana;color:darkred">
<i><b><%# DataBinder.Eval
(Container.DataItem, "FirstName")%>
<%# DataBinder.Eval
(Container.DataItem, "LastName")%>
</i></b>
</div>
<br>
<b>Address: </b><%# DataBinder.Eval
(Container.DataItem, _
"Address") %><br>
<b>City: </b><%# DataBinder.Eval
(Container.DataItem, _
"City")%><br>
<b>State: </b><%# DataBinder.Eval _
(Container.DataItem, "State") %><br>
<b>ZIP: </b><%# DataBinder.Eval _
(Container.DataItem, "Zip") %><br>
<b>Phone: </b><%# DataBinder.Eval _
(Container.DataItem, "Phone") %><br>
</div>
</ItemTemplate>
</ASP:DataList>
</body></html>
****************************************
Here is the error message I received:
*******************************************
No error information available: 0x800401F9.
Description: An unhandled exception occurred during the
execution of the current web request. Please review the
stack trace for more information about the error and where
it originated in the code.
Exception Details: System.Data.OleDb.OleDbException: No
error information available: 0x800401F9.
Source Error:
Line 16: 'fill dataset
Line 17: dim ds as DataSet = new DataSet()
Line 18: objCmd.Fill(ds, "tblUsers")
Line 19:
Line 20: 'select data view and bind to server control
Source File: C:\Inetpub\wwwroot\AspNet\21Days\day08
\listing0801.aspx Line: 18
Stack Trace:
[OleDbException (0x800401f9): No error information
available: 0x800401F9.]
System.Data.OleDb.OleDbConnection.ProcessResults(Int32
hr) +20
System.Data.OleDb.OleDbConnection.CreateProviderError
(Int32 hr) +23
System.Data.OleDb.OleDbConnection.CreateProvider
(OleDbConnectionString constr) +107
System.Data.OleDb.OleDbConnection.Open() +203
System.Data.Common.DbDataAdapter.QuietOpen
(IDbConnection connection, ConnectionState& originalState)
+44
System.Data.Common.DbDataAdapter.FillFromCommand(Object
data, Int32 startRecord, Int32 maxRecords, String
srcTable, IDbCommand command, CommandBehavior behavior)
+304
System.Data.Common.DbDataAdapter.Fill(DataSet dataSet,
Int32 startRecord, Int32 maxRecords, String srcTable,
IDbCommand command, CommandBehavior behavior) +77
System.Data.Common.DbDataAdapter.Fill(DataSet dataSet,
String srcTable) +36
ASP.listing0801_aspx.Page_Load(Object Sender, EventArgs
e) in C:\Inetpub\wwwroot\AspNet\21Days\day08
\listing0801.aspx:18
System.Web.UI.Control.OnLoad(EventArgs e) +67
System.Web.UI.Control.LoadRecursive() +35
System.Web.UI.Page.ProcessRequestMain() +731
- 10
- IIS >> IIS Book RecommendationAnyone like to recommend a book on IIS..more for the beginner type and more
along the lines of what I might need to know for ASP.Net applications.
Thanks
- 11
- ASP.Net >> Validation Suggestions??This is a hard one for me, I am fairly new to C#/ASP.net and need some
suggestions!
I have 3 controls on a page, if control 'ivtshp' has a value it is valid and
requires 'ivrng' to have a value.
And if 'ivsurvnum' has a value then it is valid.
But ivtshp/ivrng and ivsurvnum can't both be valid.
So I need to validate ivtshp to say you must enter a valid number in ivrng,
I need to validate ivrng saying you must enter a valid number in ivtshp, and
I need to validate ivsurvnum saying you can't have a surv only and t/r search
at the same time.
Suggestions or Idea's????
--
D @ premierdata
- 12
- 13
- ASP.Net >> Running AJAX enabled web site via ISAHi,
I have developed a fairly simple web site using ASP.Net 2.0 and the MS AJAX
framework extensions 1.0. Everythings works fine in when running locally and
on a remote server on the WAN.
In order to publish web sites externally we use ISA 2004. When we configure
the site to run via ISA over HTTPS up I find that I get the dreaded 'sys not
found' JS error. On examining the files that are downloaded I can see that
the scriptresources.axd file has not been downloaded. This would explain why
we get the JS error. (Using IE 7.0)
Confusingly webresources.axd downloads fine. In addition to this if I
manually point the browser to the scriptresources.axd file then I can see it
fine.
Andy ideas?
- 14
- 15
|
| Author |
Message |
tcv

|
Posted: Sun Apr 04 14:57:12 CDT 2004 |
Top |
ASP/Active Server Pages >> PBM: Authentication popup when uploading from a web dialog
Hi.
I've created a web application that requires authentication on all pages. One of
my pages is an ASP script that runs in a modal web dialog. It has a form to
upload a file. To prevent a new window from being spawned I've put an IFRAME as
the target of the form submission:
<form action="Image.asp" method="post" enctype="multipart/form-data"
target="Results">
...
<input type="file" size="30" name="ImageFile">
...
</form>
<iframe src="about:blank" name="Results" frameborder="0"></iframe>
When I pick up a file from My Documents I get an authentication prompt as soon
as I submit the form. I don't get that authentication prompt when I run the
script in a normal window (i.e. in a non dialog window). If I select a file from
anywhere beyond the wwwRoot folder I don't get the authentication prompt either.
Is it normal or is it a bug in MSIE? I would have sworn IIS had nothing to do
with client-side file access when uploading files!
I'm running Windows XP SP1 with IE6 SP1.
Thanks,
Vince C.
Web Programming299
|
| |
|
| |
 |
Matt

|
Posted: Sun Apr 04 14:57:12 CDT 2004 |
Top |
ASP/Active Server Pages >> PBM: Authentication popup when uploading from a web dialog
<iframe src="about:blank" name="Results" frameborder="0"></iframe>
What happens if you change the src to an ASP page which has the validation
in it?
"Vince C." <EMail@HideDomain.com> wrote in message
news:EMail@HideDomain.com...
> Hi.
>
> I've created a web application that requires authentication on all pages.
One of
> my pages is an ASP script that runs in a modal web dialog. It has a form
to
> upload a file. To prevent a new window from being spawned I've put an
IFRAME as
> the target of the form submission:
>
> <form action="Image.asp" method="post" enctype="multipart/form-data"
> target="Results">
> ...
> <input type="file" size="30" name="ImageFile">
> ...
> </form>
> <iframe src="about:blank" name="Results" frameborder="0"></iframe>
>
>
> When I pick up a file from My Documents I get an authentication prompt as
soon
> as I submit the form. I don't get that authentication prompt when I run
the
> script in a normal window (i.e. in a non dialog window). If I select a
file from
> anywhere beyond the wwwRoot folder I don't get the authentication prompt
either.
>
> Is it normal or is it a bug in MSIE? I would have sworn IIS had nothing to
do
> with client-side file access when uploading files!
>
> I'm running Windows XP SP1 with IE6 SP1.
>
> Thanks,
> Vince C.
>
>
|
| |
|
| |
 |
Vince

|
Posted: Wed Apr 07 03:28:55 CDT 2004 |
Top |
ASP/Active Server Pages >> PBM: Authentication popup when uploading from a web dialog
"Matt Foster" <EMail@HideDomain.com> a écrit dans le message de
news:sMZbc.2739$EMail@HideDomain.com...
> <iframe src="about:blank" name="Results" frameborder="0"></iframe>
>
> What happens if you change the src to an ASP page which has the validation
> in it?
What do you mean exactly? Do you mean server-side or client-side validation
script?
Vince C.
|
| |
|
| |
 |
yhhuang

|
Posted: Wed Apr 07 03:53:10 CDT 2004 |
Top |
ASP/Active Server Pages >> PBM: Authentication popup when uploading from a web dialog
Hello Vince,
Has the problem resolved by chaning the src to an asp page? If you have any
more concerns on it, please feel free to post here.
Thanks.
Best regards,
Yanhong Huang
Microsoft Community Support
Get Secure! ¨C www.microsoft.com/security
This posting is provided "AS IS" with no warranties, and confers no rights.
|
| |
|
| |
 |
Vince

|
Posted: Wed Apr 07 16:46:59 CDT 2004 |
Top |
ASP/Active Server Pages >> PBM: Authentication popup when uploading from a web dialog
"Yan-Hong Huang[MSFT]" <EMail@HideDomain.com> a écrit dans le message de
news:EMail@HideDomain.com...
> Hello Vince,
>
> Has the problem resolved by chaning the src to an asp page? If you have any
> more concerns on it, please feel free to post here.
Ah, Ok, I understand now. Well, the problem vanished by itself. I'm not sure
what the cure was. Anyway I browsed my web from a remote machine until I got to
the upload dialog. I selected and sent a file on the latter machine and I didn't
get the prompt. I returned and did the same on my laptop where the web with
upload dialog is and I did not get the authentication prompt anymore :-|. Wow!
Understand the one who can!
Rather confusing isn't it? Well, I keep getting strange things like this since I
began developing for the web under Windows XP... I had no such troubles under
Windows 2000.
See you when I can reproduce the problem.
Vince C.
|
| |
|
| |
 |
yhhuang

|
Posted: Wed Apr 07 22:19:46 CDT 2004 |
Top |
ASP/Active Server Pages >> PBM: Authentication popup when uploading from a web dialog
Hi Vince,
Sure. Please feel free to post in the community when you meet it again. We
are here to support you at your convenience. For the problem I think you
may pay attention to:
1) any change in IIS
2) any hotfix or windows update you just applied?
Best regards,
Yanhong Huang
Microsoft Community Support
Get Secure! ¨C www.microsoft.com/security
This posting is provided "AS IS" with no warranties, and confers no rights.
|
| |
|
| |
 |
| |
 |
Index ‹ Web Programming ‹ ASP/Active Server Pages |
- Next
- 1
- ASP.Net >> 404, SEO, robot.txt?Howdy,
A lot of my sites are data driven pages pulling from SQL using url
rewriting. Works great. some sites that i have changed are getting hits on
the old pages that no longer exist from search engine bots. I have my site
setup so that if someone tries to get to a page that isn't in the database i
redirect them to a friendly page, oops.aspx. Unfortunately some search
engines are cataloging this page as the content of the original pages, so it
thinks engineering.aspx is oops.aspx. What is the best way to handle this? I
could add oops.aspx to robot.txt and technically the search engine won't
catalog it. Can I someone send the bot a 404 code so that it doesn't look
for this page anymore? My other option is to manually enter in all of the
pages being hit into my urlrewriting, but i'm hoping not to.
Thanks!
--
David Lozzi
Product Development Manager
Delphi Technology Solutions
www.delphi-ts.com - www.lozzi.net
- 2
- ASP.Net >> Using DropDownLists in EditTemplateHi all,
I have a template column in a GridView, in which the EditTemplate
consists of three drop-down lists. When an item is chosen in the first
combo, I want the page to refresh and populate the second dropdown
based on what the user selects in the first. Then when a value is
chosen in the second dropdown, the page refreshed once again and
populates the third dropdown.
What's the best way to do this?
Cheers, JC
- 3
- ASP/Active Server Pages >> Jump to named anchor after form processingHi All!
Let's say I have a form like this:
<form action="handler.asp"> ... </form>
Within handler.asp, I output a number of named anchors:
<a name="important1">Important 1</a> ...
<a name="important2">Important 2</a> ...
<a name="important3">Important 3</a> ...
In my form processing code, I want the returned page to jump to one of
these anchors depending on the result of the processing.
How can I do this?
I don't want to use a redirection because then I would have to
re-process the same page..
Any advice would be most appreciated!
Rob
:)
- 4
- ASP.Net >> Streaming PDF using .ashxThis is not a question,
More a heads up in case anyone else gets this problem.
We have an HTTP Handler that spits out PDF files.
During development we chose to use the .ashx file to provide the
mapping ( saving us registering on each machine etc )
However, this produced unexpected problems with IE6 refusing to render
the PDF file.
The important point here is that as a standalone Handler it works as
intended.
The code in a standard page even works.
But put it in an ashx file and for some reason the browser does not
receive the header info.
It was only IE6 that caused this problem.
Hope this save people time.
Our code for those interested
.....
if (File.Exists(_sBillPdfFilePath) && _bError ==
false)
{
//Response.Write("<pre>");
//Response.Write(_sFopResult);
//Response.Write("</pre>");
try
{
string sFile = "filename=" + "billData" +
".pdf";
Response.ContentType = "application/pdf";
Response.AppendHeader("content-disposition",
sFile);
Response.TransmitFile(_sBillPdfFilePath);
}
catch (Exception e)
{
Trace.Write("Could not write PDF to Response
object.");
Trace.Write(e.Message);
Trace.Write(e.Source);
}
}
else
{
Response.Write("<pre>");
Response.Write("The printed bill could not be
generated - please try again later.");
if (util.getApplicationContext().devMode)
{
Response.Write(_sFopResult);
}
Response.Write("</pre>");
}
- 5
- 6
- ASP.Net >> hide root menu item (no sitemapdatasource used!)my 2.0 menu control has this root node which I want to hide
normally the showrootnode property is set to false on the sitemapdatasource
for the menu but I am actually populating it my self from a sql database and
so I cannot figure out how to not display the root node only child nodes?
- 7
- ASP.Net >> ASP 2.0 Direct Connection QuestionHi
We are new to the world of ASP Development and I have a simple question - we
are starting a test development in ASP 2.0 Beta and we are building an
application using a Direct Connection to our database which obviously is
specific to our own network setup server names etc.
My question is when we have finally built our app and then want to deploy
our final web based solution to our client how do we/they change the "direct
connection" to point to their own server ? Is it simply a case of changing
a config file ?
Where do the "direct connection" parameters live in an ASP 2.0 solution ?
Thanks
Mike
- 8
- Frontpage Client >> Browser incompatibility (FP2003)Hello
I am designing a new web site for a client. I am fairly new to designing
for/on web. I am using FP 2003 and have solved prior problems using this
forum, so I try again:
Please refer to test site on url: http://www.cm-context.dk/newweb
I have never checked the site on anything but IE 6.0 (did simply not think
there could be a problem) but my attention has been brought to the fact, that
the site is not compatible with Opera browser (and possible other browsers as
well).
Please, will anyone look at my site and possible tell me what I am doing
wrong.
hopes and regards
carsten-m
- 9
- IIS >> Uninstall IISHi,
When I try to uninstall IIS on my XP Professional system, I get the message:
"File copy operations were canceled. Setup cannot continue."
How can I uninstall IIS? I really want to have it installed, but it
obviously is not installed correctly, as there is no entry in the
Administrative Tools within Control Panel. I thought that if I could
uninstall it then I may be able to reinstall it properly.
I need to get IIS working so that I can get Visual Studio .Net to work.
Any help much appreciated,
Pete
- 10
- ASP.Net >> Asp login authentication problemsHi,
I am creating a website where i want to allow some webforms to be
accessible to all users, and those in a subdirectory available only to
authenticated users.
I have created a script to authenticate users from a stored sql
database from a login page login.aspx.
private void Submit1_ServerClick(object sender, System.EventArgs e)
{
if(Page.IsValid)
{
string redirect = "Forms//UserHome.aspx";
if(ValidateUser(usernameTxtBx.Text.Trim(),
passwordTxtBx.Text.Trim()))
{
// Create Cookie
HttpCookie YLCcookie = new HttpCookie("username");
YLCcookie.Value = "usernameTxtBx.Text, passwordTxtBx.Text";
YLCcookie.Expires = DateTime.Now.AddDays(1);
Response.Cookies.Add(YLCcookie);
// Redirect the user to UserHome.aspx
Response.Redirect(redirect);
}
else
{
messageLbl.Text = "Invalid Login, please try again.";
}
}
}
private bool ValidateUser(string txtUser, string txtPass)
{
// Declare conn from Web.Config
SqlConnection conn = new
SqlConnection(ConfigurationSettings.AppSettings["strConn"]);
// Access Stored Procedure
SqlCommand cmd = new SqlCommand("proc_ValidateUser", conn);
cmd.CommandType = CommandType.StoredProcedure;
// Create Parameters
SqlParameter objParam1;
SqlParameter objParam2;
SqlParameter returnParam;
objParam1 = cmd.Parameters.Add("@usrName", SqlDbType.NVarChar);
objParam2 = cmd.Parameters.Add("@usrPassword", SqlDbType.NVarChar);
returnParam = cmd.Parameters.Add("@Num_of_User", SqlDbType.Int);
// Set the direction of the parameters
objParam1.Direction = ParameterDirection.Input;
objParam2.Direction = ParameterDirection.Input;
returnParam.Direction = ParameterDirection.ReturnValue;
// Set the values of the parameters
objParam1.Value = txtUser;
objParam2.Value = txtPass;
try
{
if(conn.State.Equals(ConnectionState.Closed))
{
conn.Open();
cmd.ExecuteNonQuery();
}
if((int)returnParam.Value < 1)
{
messageLbl.Text = "Invalid Login.";
return false;
}
else
{
conn.Close();
return true;
}
}
catch (Exception ex)
{
messageLbl.Text = ex + "Error connecting to database. Please try
again later.";
return false;
}
finally
{
// Ensures connection has closed
conn.Close();
}
}
This works ok.
If the user is not registered, there is a link on login.aspx to
AddUser.aspx, allowing for registration. Both these pages should be
accessible to all users.
However, i have a number of forms in a subdirectory, WebForms, that i
want to be accessible only if the user is logged in. the script above
does this and works with regard to navigation within the site. however,
if a person was to bookmark one of the secure forms currently they are
able to navigate to it without logging in.
I have edited the Web.Config file as follows:
<authentication mode="Forms">
<forms name="YLCcookie" loginUrl="login.aspx"
protection="All" path="/" />
</authentication>
<authorization>
<allow users="*" /> <!-- Allow all users -->
</authorization>
This allows all users access to login.aspx and AddUser.aspx, this works
fine.
I have then added a new section on the end of the Web.Config file as
follows:
<location path="WebForms">
<system.web>
<authorization>
<deny users="?" />
</authorization>
</system.web>
This stops all unauthenticated users from accessing the forms in the
WebForms subdirectory, as i wanted. Currently, however, it also stops
authenticated users too.
Do i need to add <allow users= . . . > to this section?, or should the
cookie in the submit script work in it's place? If i do need to add an
<allow users= . . . > section, how can i securely do this from the user
login data stored in the sql database?
Thanks for your time in reading this far, i know it's a lengthy one,
but thought i'd best give as much info as possible as i'm not wholey
sure where the problem lies.
Thanks again.
- 11
- ASP.Net >> SelectedIndexChangedHi I'm new to asp.net and I have a couple of questions.. I have
datagrid with several columns. I have two Button Columns when I select
either one I go to the function:
private void datagrid1_SelectedIndexChanged(object sender,
System.EventArgs e)
How can I determine in this function if the Market button was selected
or the Exception button was selected?
If I were able to use the
(System.Web.UI.WebControls.DataGridCommandEventArgs e ) with
SelectedIndexChanged I could use e.CommandName to determine what button
was selected, but I can not use this method. Help!
- 12
- ASP.Net >> Client-side enable/disable buttonHi,
I have a webform with a textbox and a button.
When the textbox is empty (=""), I want the button to be disabled. When
the user enters text in the textbox, the button must be enabled.
Is this possible?
(please if possible, show me the code)
Thanks!!!
M O J O
- 13
- ASP.Net >> Adding header to request in HTTP ModuleCan you add a header to a request in an http module? I'm trying
unsuccessfully. Here's an example of my code:
public void Init(HttpApplication r_objApplication)
{
r_objApplication.EndRequest += new
EventHandler(this.EndRequest)
}
protected void EndRequest(object sender, EventArgs e)
{
HttpResponse res = HttpContext.Current.Response;
res.AddHeader("MyTestHeaderVar","MyTestVarValue");
res.Output.Flush();
}
My test page then spits out all request.headers and all
request.servervariables and my header is not anywhere. Does anyone
know what I'm doing wrong?
Thanks in advance.
- 14
- ASP.Net >> Dynamically added Checkbox in GridviewI am dynamically adding a checkbox in a gridview and I find there are several
things that I cannot figure out how to address.
1. The width of the checkbox column is very wide. I've tried adding
properties and Item Style to the column but it has no effect. Is there
someway to size this column to be smaller? I removed the CssClass property
and it had no effect on the size as well.
2. The gridview is sortable using javascript. Is there any way to keep
checkboxes selected after the sort?
<asp:GridView ID="GridViewResults" runat="server"
AutoGenerateColumns="False"
CssClass="sortable" >
<Columns>
<asp:TemplateField HeaderText="Select" >
<ItemTemplate>
<asp:CheckBox ID="chkSelect" runat="server" />
</ItemTemplate>
<ItemStyle width="20px" />
</asp:TemplateField>
<asp:HyperLinkField DataNavigateUrlFields="QuoteID"
DataNavigateUrlFormatString="SetupSummary.aspx?QuoteID={0}"
DataTextField="UserFriendlyQuoteID" HeaderText="Quote ID"
NavigateUrl="~/SetupSummary.aspx"
SortExpression="UserFriendlyQuoteID" />
<asp:BoundField DataField="QuoteStatusDescription"
HeaderText="Status" />
<asp:BoundField DataField="AcceptedDate" HeaderText="Accept
Date" />
<asp:BoundField DataField="Notes" HeaderText="Notes" />
</Columns>
</asp:GridView>
Any thoughts would be appreciated.
Bill
- 15
- Frontpage Client >> can't open webWhen I try to open my client's web site - I get the
error "The folder 'http://www/site.com' isn't accessible.
The folder may be located in an unavailable location,
protected with a password, or the filename contains a / or
\.'
I get the same symptom even when I open the site with Word
(it opens read only with no login prompt). If I open
other sites - I get the anticipated login prompt.
I've looked for bogus instances of personal web server -
IIs etc... to no avail. We are not using a proxy server
so it doesn't appear that is a factor.
The workstation is XP Pro SP-1 abd we (were) using FP 2002.
Any ideas?
|
|
|