 |
 |
Index ‹ Web Programming ‹ ASP.Net
|
- Previous
- 1
- ASP.Net >> User ControlHello,
I have created a User Control within Visual Studio and it contains a
button that allows the user to querry a database. I dynamically add
additional controls to the page based on the number of rows retured inside a
dataset. All works well, but I have noticed that the control is rendered
in the "Pre Render" event I loose the Control's events (i.e. button1.click).
Is there a way to render the controls in the "Pre Render" event and still
maintain the controls Events?
Dim HowMany as Int16 = 8
Dim MyControl(HowMany) As UserControl
MyControl(i) = LoadControl("ArtistControl.ascx")
Page.FindControl("Form1").Controls.Add(MyControl(i))
The Control Must be an array of controls because "HowMany" changes for each
page. If I load the control in the "Page Load" event the controls events
work. Is this a bug or am I missing something. I even added an Event
Handler to the control with no success.
Any Suggestions would be greatly appreciated,
Thanks,
Chuck
- 2
- ASP.Net >> Example for basic parameterized INSERT in asp.net 2.0?I'm new to ASP.NET and working with the 2.0 beta. As a classic ASP
developer I have a lot of code that looks like this:
sql = "insert into x values("
sql = sql & val1 & ", " & val2 & ", ' " & strVal3 & " ', " & val4 & ")"
Which of course gets very messy. As I understand it there is a way to use a
placeholder string with question marks like "values(?, ?, ?, ?)" and then
set the value of each ? placeholder with variable names. This would relieve
the messiness caused by worrying about missing quotes and readability
issues, etc.
Can someone provide a basic code snippet that demonstrates how to do this?
I know there are all sorts of toolbar things that can be dragged and dropped
to create some of this visually. But my need is so basic I just want to
have the minimal code to create a db connection, execute an insert, and
perhaps retrieve the @@identity value associated with the inserted row.
Thanks in advance!
Steve
- 3
- ASP.Net >> Gridview filter issueI have a grid view with a filter based on a dropdown list. when i select a
page on the gridview the filter gets dropped. What is the correct way to
handle paging when using a filter?
asp.net 2.0 vb
--
thanks (as always)
some day i''m gona pay this forum back for all the help i''m getting
kes
- 4
- ASP.Net >> Storing complete tree in sessionHi
I have the problem at the moment that I have to build
a page with all its dynamic buttons etc in order to get
postbacks on those buttons, then rebuild the control tree
in response to any possible postback.
What if I just stored the complete Control tree structure in
the session? Alternatively any better ways of doing this?
I have tried it on a simple page with 4 buttons and it
worked fine, e.g. something like this:
if(!IsPostBack)
{
for(int i=3D0; i<4; i++)
{
Button button =3D new Button();
button.Text =3D "Keep Me: " + i.ToString();
button.Click +=3D new EventHandler(button_Click);
this.ph.Controls.Add(button);
}
this.Session["everything"] =3D this.ph;
}
else
{
PlaceHolder oldOne =3D (PlaceHolder)(Session["everyth=ADing"]);
ControlCollection coll =3D (ControlCollection)oldOne.Cont=ADrols;
while(coll.Count>0)
{
this.ph.Controls.Add(coll[0]);
}
this.Session["everything"] =3D this.ph;
}=20
Any views?=20
Ta=20
Shard
- 5
- ASP.Net >> Own TypeConverter - Only works after restart of Visual StudioHello,
the problem seems to be complex and is in all developments of web-controls
which uses own TypeConverter.
For this I have here a simple demo-program of the problem:
The Control-code: A class MyString which is a class which is similar to a
string
[TypeConverter(typeof(MyStringTypeConverter))]
public class MyString
{
string str;
public MyString(string str) { this.str = str; }
public override string ToString() { return str; }
public string Str
{
get{ return str; }
set { str = value;}
}
}
the typeconverter used:
class MyStringTypeConverter : TypeConverter
{
public override bool CanConvertFrom(ITypeDescriptorContext context,
Type sourceType)
{
if (sourceType == typeof(string))
{ return true;}
return base.CanConvertFrom(context, sourceType);
}
public override bool CanConvertTo(ITypeDescriptorContext context,
Type destinationType)
{
if (destinationType == typeof(string))
{return true;}
else if (destinationType == typeof(InstanceDescriptor))
{
return true;
}
return base.CanConvertTo(context, destinationType);
}
public override object ConvertFrom(ITypeDescriptorContext context,
System.Globalization.CultureInfo culture, object value)
{
if (value is string)
{
return new MyString((string)value);
}
return base.ConvertFrom(context, culture, value);
}
public override object ConvertTo(ITypeDescriptorContext context,
System.Globalization.CultureInfo culture, object value, Type
destinationType)
{
if (destinationType == typeof(string))
{
MyString cls = (MyString)value;
return cls.ToString();
}
else if (destinationType == typeof(InstanceDescriptor))
{
ConstructorInfo ci = typeof(MyString).GetConstructor(new
Type[] { typeof(string) });
MyString cls = (MyString)value;
return new InstanceDescriptor(ci, new object[] {
cls.ToString() });
}
return base.ConvertTo(context, culture, value, destinationType);
}
}
the control-class:
[DefaultProperty("Text")]
[ToolboxData("<{0}:TestCtrl02 runat=server></{0}:TestCtrl02>")]
public class TestCtrl02 : Control
{
[Bindable(true), Category("Appearance"),Localizable(true)]
public MyString Text
{
get{
MyString s = (MyString)ViewState["Text"];
return ((s == null) ? new MyString("") : s); }
set
{ ViewState["Text"] = value; }
}
protected override void Render(HtmlTextWriter writer)
............
}
using in a page:
............
<cc1:TestCtrl02 ID="testCtrl" runat="server" Text="my text" >
</cc1:TestCtrl02>
..................
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
ok seems many code, but is the shortest possible to see the problem.
The problem:
The program is compiled, we now
start Visual Studio.
Now if we go in the html-view of the page we see:
<cc1:TestCtrl02 ID="testCtrl" runat="server" Text="my text" >
</cc1:TestCtrl02>
Now we change to the design view:
the property Text now has in property view under property Text 'my text'.
If we change the text in the property and go to the html-view all is fine.
So, all works fine.
NOW: We make a RE-build of the project. Nothing more.
Now we open the page-file in html-view. All is fine.
Now we change to the design view: Error Creating Control 'my text' cannot be
set on property Text.
If we now close Visual Studio and start it again, All works fine.
If we now delete the text, and make a RE-build, so we have
<cc1:TestCtrl02 ID="testCtrl" runat="server" >
</cc1:TestCtrl02>
we can go to design view without problems.
If we now enter in the Text-property : my text we get an error:
Property value is not valid: MyString cannot be converted to type MyString.
We now close Visual Studio and start it again and do the same.
Now it works fine.
So I know such problem allway are there when I use TypeConverter I think the
following:
After a rebuild the own type converters are not seen from the visual studio
environment.
So what maybe the reason, what can be a solution.
Developing web-controls with typconverters and to start Visual Studio after
each rebuild is impossible.
sorry it's much text, but the problem is fundamental and very important for
me.
Thank you for any help.
Rolf Welskes
- 6
- 7
- ASP.Net >> Populating a DDL with users from Active DirectoryMy goal, somehow, is to populate a dropdownlist with all the user names
in active directory. I don't even know where to begin, really.
I added a reference to System.DirectoryServices so I could use the
System.DirectoryServices.ActiveDirectory namespace. I don't even know if
this is the right way to go as I can't seem to find anything in that
namespace that would help me query active directory for names.
I can't use an LDAP query because lDAP isn't working on our network for
some reason (never has. i posted a note asking help for this on the
win2000.general newsgroup but no one replied).
So, even if I could use the framework to access active directory to get
a list of all the users, what about security? I don't think the aspnet
account on the web server has access to the domain's directory. How
would I go about specifying an account that could be used to access the
directory (if its necessary to do so)?
All this would need to be done in VB as I don't know C#. Oh, and I'm
using VS 2005 and .NET 2.0.
Thanks!
Jim
- 8
- 9
- ASP.Net >> preventing images savinghi, is there some way to prevent(at least for not so advanced users)
image saving on local disk; currently i use javascript which handles the
right mouse button click, but all it takes is to disable js in the browser ?
TIA
- 10
- ASP.Net >> Access deniedHi,
I am using a 3rd party product to create dynamic web service proxies
(downloaded from www.thinktecture.com).
My problem is that it doesn't work if Anonymous Access is turned off. I
know, from searching, that this is to do with Credentials but I just
can't seem to find where to fix it.
First it builds wsdl string (I added the 2 Credentials lines):
WebRequest req = WebRequest.Create(uri);
req.Credentials = System.Net.CredentialCache.DefaultCredentials;
WebResponse result = req.GetResponse();
Stream ReceiveStream = result.GetResponseStream();
Encoding encode = Encoding.GetEncoding("utf-8");
StreamReader sr = new StreamReader(ReceiveStream, encode);
string wsdlSourceValue = sr.ReadToEnd();
sr.Close();
return wsdlSourceValue;
Then it builds an assembly:
StringReader wsdlStringReader = new StringReader(strWsdl);
XmlTextReader tr = new XmlTextReader(wsdlStringReader);
ServiceDescription.Read(tr);
tr.Close();
// WSDL service description importer
CodeNamespace cns = new CodeNamespace(CodeConstants.CODENAMESPACE);
sdi = new ServiceDescriptionImporter();
// check for optional imports in the root WSDL
DiscoveryClientProtocol dcp = new DiscoveryClientProtocol();
//(I added this credentials line)
dcp.Credentials = System.Net.CredentialCache.DefaultCredentials;
dcp.DiscoverAny(wsdl);
dcp.ResolveAll();
foreach (object osd in dcp.Documents.Values)
{
if (osd is ServiceDescription)
sdi.AddServiceDescription((ServiceDescription)osd, null, null);
if (osd is XmlSchema)
{
// store in global schemas variable
if (schemas == null) schemas = new XmlSchemas();
schemas.Add((XmlSchema)osd);
sdi.Schemas.Add((XmlSchema)osd);
}
}
sdi.ProtocolName = protocolName;
sdi.Import(cns, null);
// change the base class
// get all available Service classes - not only the default one
ArrayList newCtr = new ArrayList();
foreach (CodeTypeDeclaration ctDecl in cns.Types)
{
if(ctDecl.BaseTypes.Count > 0)
{
if(ctDecl.BaseTypes[0].BaseType == CodeConstants.DEFAULTBASETYPE)
{
newCtr.Add(ctDecl);
}
}
}
foreach (CodeTypeDeclaration ctDecl in newCtr)
{
cns.Types.Remove(ctDecl);
ctDecl.BaseTypes[0] = new CodeTypeReference
(CodeConstants.CUSTOMBASETYPE);
cns.Types.Add(ctDecl);
}
// source code generation
CSharpCodeProvider cscp = new CSharpCodeProvider();
ICodeGenerator icg = cscp.CreateGenerator();
StringBuilder srcStringBuilder = new StringBuilder();
StringWriter sw = new StringWriter(srcStringBuilder,
CultureInfo.CurrentCulture);
if (schemas != null)
{
foreach (XmlSchema xsd in schemas)
{
if (XmlSchemas.IsDataSet(xsd))
{
MemoryStream mem = new MemoryStream();
mem.Position = 0;
xsd.Write(mem);
mem.Position = 0;
DataSet dataSet1 = new DataSet();
dataSet1.Locale = CultureInfo.InvariantCulture;
dataSet1.ReadXmlSchema(mem);
TypedDataSetGenerator.Generate(dataSet1, cns, icg);
}
}
}
icg.GenerateCodeFromNamespace(cns, sw, null);
proxySource = srcStringBuilder.ToString();
sw.Close();
// assembly compilation
string location = "";
if(HttpContext.Current != null)
{
location = HttpContext.Current.Server.MapPath(".");
location += @"\bin\";
}
CompilerParameters cp = new CompilerParameters();
cp.ReferencedAssemblies.Add("System.dll");
cp.ReferencedAssemblies.Add("System.Xml.dll");
cp.ReferencedAssemblies.Add("System.Web.Services.dll");
cp.ReferencedAssemblies.Add("System.Data.dll");
cp.ReferencedAssemblies.Add(Assembly.GetExecutingAssembly().Location);
cp.ReferencedAssemblies.Add(location +
"Thinktecture.Tools.Web.Services.Extensions.Messages.dll");
cp.GenerateExecutable = false;
cp.GenerateInMemory = false;
cp.IncludeDebugInformation = false;
cp.TempFiles = new
TempFileCollection(CompiledAssemblyCache.GetLibTempPath());
ICodeCompiler icc = cscp.CreateCompiler();
CompilerResults cr = icc.CompileAssemblyFromSource(cp, proxySource);
if(cr.Errors.Count > 0)
throw new
DynamicCompilationException(string.Format(CultureInfo.CurrentCulture,
@"Building dynamic assembly failed: {0} errors - {1}",
cr.Errors.Count,cr.Errors[0].ErrorText ));
Assembly compiledAssembly = cr.CompiledAssembly;
//rename temporary assembly in order to cache it for later use
CompiledAssemblyCache.RenameTempAssembly(cr.PathToAssembly, wsdl);
return compiledAssembly;
It creates a proxyInstance (as an object where objTypeName is passed
in):
foreach (Type ty in ProxyAssembly.GetTypes())
{
if(ty.BaseType == typeof(SoapHttpClientProtocolExtended))
{
if(objTypeName == null || objTypeName.Length == 0 || ty.Name ==
objTypeName)
{
objTypeName = ty.Name;
break;
}
}
}
Type t = ass.GetType(CodeConstants.CODENAMESPACE + "." + objTypeName);
return Activator.CreateInstance(t);
And it uses this to call the method:
MethodInfo mi = proxyInstance.GetType().GetMethod(methodName);
object[] paramsArray = (object[])methodParams.ToArray(typeof(object));
object result = mi.Invoke(proxyInstance, paramsArray);
But the Invoke fails with Access denied. Using this base (because I
have downloaded it and have not had the expertise or time to fully
understand it) - how can I get this to work with Anonymous Access
turned off. I imagine if I can get an IWebProxy object from
proxyInstance I could try setting the credentials of that before Invoke
but I'm not sure how to get that object.
Any ideas>
TIA
Phil
- 11
- ASP.Net >> maxlenght of a usercontrolif I set the parameter maxlenght of a usercontrol, am I assured that all the
browsers will accept such a limitation or is this just an IE feature?
--
Giuseppe
- 12
- ASP.Net >> Enterprise Library Configuration setting!Hi,
I am developing web application on 3 tier model. For data access my Data
Access Layer (DAL) uses MS Enterprise Library (MSEL). If I am right MSEL
relies on web.config file for the connection strings. I need to make the DAL
totally independent ie I want to save the connection string information in a
App.config file inside the DAL project (a class library project).
How can I make MSEL to use App.Config in DAL for connection string instead
of Web.Config in ASP.Net application??
The reason I want to do this is that I have .Net windows service which need
to use the DAL independently of the application.
-Rick
- 13
- ASP.Net >> web.config inheritance pain!I have a virtual website or what ever it's really called in IIS6 under my
root intranet site both use ASP.NET 2.0... my intrante site has a roles
provider in it, which is set as the default provider for that site. When I
try to go to the virtual site now though under http://intranet/othersite
(which is really our Sourcegear vault server site) the othersite loads up
with an error that says
Configuration Error
An error occurred during the processing of a configuration file required to
service this request. Please review the specific error details below and
modify your configuration file appropriately.
Could not load type 'IntranetRoleProvider'.
Source File: </b> C:\Inetpub\wwwIntranet\web.config<b> Line:
</b> 86
<br><br>
<hr width=100% size=1 color=silver>
<b>Version Information:</b> Microsoft .NET Framework
Version:2.0.50727.42; ASP.NET Version:2.0.50727.210
[HttpException]: Could not load type 'IntranetRoleProvider'.
at System.Web.Compilation.BuildManager.GetType(String typeName, Boolean
throwOnError, Boolean ignoreCase)
at System.Web.Configuration.ConfigUtil.GetType(String typeName, String
propertyName, ConfigurationElement configElement, XmlNode node, Boolean
checkAptcaBit, Boolean ignoreCase)
[ConfigurationErrorsException]: Could not load type 'IntranetRoleProvider'.
(C:\Inetpub\wwwIntranet\web.config line 86)
at System.Web.Security.Roles.Initialize()
at System.Web.Security.Roles.get_CacheRolesInCookie()
at System.Web.Security.RoleManagerModule.OnLeave(Object source, EventArgs
eventArgs)
at
System.Web.HttpApplication.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean&
completedSynchronously)
-->
--.
which did not show up until we started using a role provider on the parent
site! how do I prevent this sub virtual site from inheriting the parent site
web.config's role provider? I even have this in there now and it doesnt help
at all
<siteMap enabled="false"></siteMap>
<roleManager enabled="false"></roleManager>
that's in the sub site trying to disable the two new items... but doesnt
seem to help... what should I do? thanks!
- 14
- ASP.Net >> Select statementSELECT [Department], [Last_Name], [First_Name], [Title], [Extension]
FROM [temployees] WHERE (([Department] = @Department) OR ([First_Name]
LIKE '%' + @First_Name + '%'))
this is my sql statement on my GridView but I can't get the values to
display?
--
Sent via .NET Newsgroups
http://www.dotnetnewsgroups.com
- 15
- ASP.Net >> Repeater control footer summary (asp.net 2 with vb)Hello,
I have a repeater that is bound to a SQL Server table. I would like to
place a summary in the footer for the item count and product cost.
I have two fields. One for the product name and the other for product
cost.
<%#Container.DataItem("ProductA")%>
<%#Container.DataItem("PriceA")%>
My question is, how to count the products (ProductA), get the total price
(sum PriceA) and then place the value in the footer.
Any help with this would be appreciated.
--
Thanks in advance,
sck10
|
| Author |
Message |
Astrodude

|
Posted: Thu Oct 23 15:00:16 CDT 2003 |
Top |
ASP.Net >> ASP and MySQL
Anyone know how to connect to a MySQL database in ASP? Could someone point
me to sample code. I don't need extras to makes this work, correct?
Web Programming301
|
| |
|
| |
 |
Brian

|
Posted: Thu Oct 23 15:00:16 CDT 2003 |
Top |
ASP.Net >> ASP and MySQL
you will need OLEDB or ODBC for mysql drivers installed on the server with
IIS on it to get it to work.
"Mark Watkins" <EMail@HideDomain.com> wrote in message
news:%EMail@HideDomain.com...
> Anyone know how to connect to a MySQL database in ASP? Could someone
point
> me to sample code. I don't need extras to makes this work, correct?
>
>
|
| |
|
| |
 |
Mythran

|
Posted: Thu Oct 23 15:02:07 CDT 2003 |
Top |
|
| |
 |
| |
 |
Index ‹ Web Programming ‹ ASP.Net |
- Next
- 1
- Frontpage Client >> Hyperlink updates crashes FrontPage 2003 under VistaMy recently acquired Vista o/s PC has Office Professional 2007 loaded. I have
a few years of experience using earlier versions of FP under Win XP.
In this new configuration, If I click on a web page already loaded in
order to pick up its hyper link address, FP crashes. This is such a basic
function that has been around for ages that I am surprised to see it happen.
Worse yet, Icannot find a solution on the MS site.
Anyone have ideas or answers?
- 2
- Frontpage Client >> Display Date Field using DRWHi,
I am having a real problem figuring this one out:
I have a Access database with serveral fields, one is called DateFrom and
the field Data Type is set to Date/Time, with a Format of Long Date.
I would like to display on an ASP Page the database results when the
DateFrom field is search with Todays date.
I am using the Database Results Wizard in Frontpage 2000, to achieve my ASP
Page. However, I dont know what to enter as the Criteria, I have tried
now(), Date(), and SYSDATE but I get the error:
Database Results Error
Description: [Microsoft][ODBC Microsoft Access Driver] Data type mismatch in
criteria expression.
Number: -2147217913 (0x80040E07)
Source: Microsoft OLE DB Provider for ODBC Drivers
I've also tried this: putting a date in the Value box, as it is stored in
the database, such as 17/09/2003, the Comparison I have choosen is Equals,
and the Field Name is DateFrom: I still get this error.
Anyone any ideas?
Also, when I display the results of a search from my database, the DateFrom
field is displayed as mm/dd/yyyy is it possible to change this format to
dd/mm/yyyy ?
My web is on a ISS5 Windows 2000 Server
Thanks for any help.
- 3
- 4
- ASP.Net >> Double databindingI have a page just about ready to go and then I noticed all the databinding
on the page was happening twice (which really isn't nice).
I then created a small sample just to see what was going on. The page
contains just a dropdown which is databound to a SQLDatasource.
When this runs with a breakpoint on the "Dim i As Integer = 1" line it show
a breakpoint twice on the load.
Any ideas???
Lloyd Sheen
Page Source:
<%@ Page Language="VB" AutoEventWireup="false"
CodeFile="TestAccordian.aspx.vb" Inherits="TestAccordian" %>
<%@ Register Assembly="System.Web.Extensions, Version=3.5.0.0,
Culture=neutral, PublicKeyToken=31bf3856ad364e35"
Namespace="System.Web.UI" TagPrefix="asp" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Test Databinding Problems</title>
</head>
<body>
<form id="form1" runat="server">
<asp:DropDownList ID="GenreList" runat="server"
DataSourceID="SqlDataSource1"
DataTextField="Genre" DataValueField="Genre"
OnDataBound="GenreList_DataBound"
ToolTip="Choose only artists tagged with this genre"
Width="100px">
</asp:DropDownList>
<asp:SqlDataSource ID="SqlDataSource1" runat="server"
ConnectionString="<%$ ConnectionStrings:C:\DATABASE
FILES\MUSICINFODB.MDFConnectionString %>"
SelectCommand="SELECT [Genre] FROM [AllGenres]">
</asp:SqlDataSource>
</form>
</body>
</html>
Code Behind :
Partial Class TestAccordian
Inherits System.Web.UI.Page
Protected Sub GenreList_DataBound(ByVal sender As Object, ByVal e As
System.EventArgs) Handles GenreList.DataBound
Dim i As Integer = 1
End Sub
End Class
- 5
- ASP.Net >> Send Info From PopUp Window To Parent WindowHow do you send info from popup window to a parent? From the parent, the
user click a link and a popup window appears with a calendar in it. I want
them to click the date in the popup and populate a text box on the parent
window. Any ideas?
Thanks in advance.
--
Chuck Foster
Programmer Analyst
Eclipsys Corporation - St. Vincent Health System
- 6
- Frontpage Client >> Transferring domain to new hosthaving transferred in my domain to a new host, i now find
that the host doesnt actually suppport users in helping
them get there web to appear under that domain name, this
seems strange to me and now am haivng problems findin how
to publish it to my domain rather than just my address at
the host.
James
- 7
- 8
- IIS >> IIS6 crash ?!?!?Very strange thing has happened this morning.
Our setup 2xXeon 3 GHz 1gb Ram. Running II6 on win2003 together with
MySQL,MAilEnable,DNS etc. has decided to crash. Apparently IIS6 stopped
first then the mail and then the whole thing made a puff. After restart
everything was just fine except I cannot figure out what did happen. I would
appreciate any help on that, where to look for etc.
--
Best Regards,
Iavor Radoulov
Tel.: +359 899 865 049
Tel.: +359 2 9355 777
Fax: +359 2 9355 770
E-mail: iavor@radulov.info
www.net4you.bg
Net4You Ltd., 22 Patriarh Evtimii Blvd., fl.4, Sofia 1000, Bulgaria
- 9
- IIS >> IP address restrictions, limits of?Hi folks,
I'm trying to find out if there are any limits on the number of IPs you
can Grant access to, if a web is set as Deny All under the IP security
settings.
I'm looking for hard limits and performance limits both, on IIS 5 vs IIS 6.
If anyone can provide me any information, that would be greatly appreciated.
Also, can anyone confirm that these IPs are stored in the metabase?
Thanks,
Bob Housedorf
- 10
- Frontpage Client >> How to store ugc in databasehi
I want to develop any ugc site which needs to store all the
data created by the user. I have the basic doubt of how to store/
handle this data in database, so that I should be able to access it in
a faster way. Can anyone help in this issue?
- 11
- 12
- 13
- 14
- Frontpage Programming >> how to fill the whole screen?I have been building a site with Frontpage on the basis of the standard pages
(with a margin on the left to be used as index). The problem however is that
when it is published in the browser that on the left and the right of the
page I get a white space. Of course I can fill up this space with a colour,
but what I really want is that publised page fills the whole screen. So is it
possible to put together a webpage that fills the whole screen with Frontpage
by using standard pages (e.g. by adjusting certain margings)? If so, how do I
aguest these margins?
- 15
|
|
|