| Validation for user controls |
|
 |
Index ‹ Web Programming ‹ ASP.Net
|
- Previous
- 1
- ASP.Net >> Send form data to another pageHow can I redirect to another page with form data?
In asp Classic I write:
<form ... action="filename">...</form>
and in then target page I write
<%=request.form("fieldname")%>
....
but in ASP.NET 1.1 'action' does not exist
how can I send form data to another page?... and how can I read a form
values (same of ASP classic with request.form("fielsname")?)
Thanks
Andrea
Sorry I know that is stupid question, but I try to translate ASP Classic App
to ASP.NET
- 2
- ASP.Net >> CreateDirectory working inconsistantly from ASP.netPlease HELP !!
I have a web page that is trying to create folders on a file server
eg. \\SERVERNAME\F4\Projects\[New Folder Name]
Users of the web site are authenticated with Windows Integrated Security.
(have tried on W2003/IIS6 and W2k/IIS5 with no difference in behavoir)
When a user connects to the using a browser on the same machine as the
webserver the code works and is able to create the new folder.
When the same user connects from a remote machine the CreateDirectory
function generates the following Exception
System.UnauthorizedAccessException
"Access to the path \"TEST\" is denied."
Source "mscorlib"
StackTrace
System.IO.__Error.WinIOError(Int32 errorCode, String str)
at System.IO.Directory.InternalCreateDirectory(String fullPath, String
path)\r\n
...
I have tried to do this in 3 ways all with the same problem;
A)
DirectoryInfo di = Directory.CreateDirectory(newfullpath);
B)
DirectoryInfo root = new DirectoryInfo(rootPath);
DirectoryInfo di = root.CreateSubdirectory(folderName);
C)
[DllImport("kernel32.dll")]
static extern bool CreateDirectory(string lpPathName, IntPtr
lpSecurityAttributes);
...
bool result = CreateDirectory(path, IntPtr.Zero);
DirectoryInfo di = DirectoryInfo(path);
I have also checked that the Integrated Authentication is getting passed
correcty into the application
string origID = Thread.CurrentPrincipal.Identity.Name;
string contextUser = HttpContext.Current.User.Identity.Name;
Both call return the same user regardless if the call is from the server or
a remote machine.
Needless to say that the User has the required permissions to create the
folder because they are able to do so as long as they do it from a browser on
the server itself.
If anyone can shed any light on what is going on here I would greatly
appreciate it.
Regards,
David Davies
Goldman Sachs
- 3
- ASP.Net >> HttpHandler: context.Request.UrlReferrer data is nullHi,
I have implemented the IHttpHandler interface for generating images and
writing them to response stream in binary format. I use an
IHttpHandlerFactory to instantiate that handler. A .aspx page sends a
request to the factory which then instantiates an instance of the
handler. The response is read by a third party component that then
displays the image.
i.e. inside .aspx page:
-------------------------
3rdPartyComp.ImageURL =
"http:\\localhost\ImageGenerator\image.imgr?x=100&y=200";
(.imgr extension is registered with IIS and is declared in web.config
httphandler section)
While debugging this handler, I came across a weird situation where the
context parameter that gets passed in ProcesRequest module has null
value for the context.Request.UrlReferrer parameter. Other stuff like
querystring, sessionstate (implemented IRequiresSessionState in
handler) etc. do exist though. Needless to say..the HttpInputStream is
empty when I tried to view its contents.
I used 'Fiddler' to track requests sent to the handler but that did not
help much.
Would appreciate if anyone who faced the same issue could help me
identify the missing link.
Thanks
- 4
- ASP.Net >> Pass parameter to Popup windowI have 2 webform in vb.NET application.
On Webform1, I have one text box1 and one button.
on Webform2, I have one text box .
I need transfer the value of textbox 1 in webform1 to textbox2 in
webform2. and popup webform2 when user click on the button on webform1.
I have code in webform1:
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
Button1.Attributes.Add("onclick", "window.open('WebForm2.aspx?a=" +
TextBox1.Text.ToString + "',null,'height=250, width=250,status= no,
resizable= no, scrollbars=no, toolbar=no,location=no,menubar=no ');")
End Sub
and following code in webform2:
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
TextBox1.Text = Request("a").ToString
End Sub
I could not get the result unless I click on the button1 twice. i know
what happen in here but have no solution. I will be appreciated if you
could help here.
Thanks in advanced,
Di
- 5
- ASP.Net >> Textbox in a User ControlI have created a user control, MyControl.ascx, that has a text box and
a button. The button updates a table in SQL with the text in the
textbox. Now, I include that control in a page Default.aspx. From
Default.aspx, on page load, I populate the textbox through the public
property TextBoxBody of MyControl.ascx.
When I load Default.aspx and change what's in the text box and click
the button to update the database, the update statement includes the
original textbox text (loaded through TextBoxBody on page load) rather
than the changes I have made.
What am I missing?
Thanks!
Jason
- 6
- ASP.Net >> Problems with HttpWebRequest file upload - (403) forbiddenHi,
as an absolute web and configuration beginner I am stuck with a problem
and so I finally seek your help again:
Development tools: ASP.NET 1.1, C#, VS 2003, Windows 2000 SP4, IIS 5.0
I developped a web service that writes data from a text file uploaded
from a Pocket PC to a database, and then prepares another text file with
updated master data for download by the Pocket PC.
My current problem are NTFS rights and/or the IIS configuration. I
succeeded in getting all this working on one machine but only by
granting all rights to "everyone". But this is no real solution.
I would like to pass credentials with the HttpWebRequest for the upload
(e.g. NetworkCredential("user", "password")), and set up a corresponding
local Windows user on the machine running the web server to access up-,
download and the webservice. But up to now all my attempts failed as I
do not really understand what I have to configure where and how for
getting this to work. Mostly I end up with "...(403) Forbidden" or I'm
running into a timeout.
Is there some kind of "formula" for configuring the web site (I'm really
lost in the help of IIS) for that all elements involved (webservice,
NTFS authorisation and IIS configuration) work together like wanted? I
appreciate any kind of help!
Thanks in advance
Regards
Roland
- 7
- 8
- ASP.Net >> HyperLink Column in DataGridI am trying to add HyperLink column with an image
Below is the code that I use
<asp:TemplateField>
<ControlStyle Height="75px" Width="75px" />
<ItemStyle Height="75px" Width="75px" />
<ItemTemplate>
<asp:HyperLink ID="HPF1" runat="server" Height="75px" Width="75px"
ImageUrl='<%# Eval("ImageFilePath") %>' NavigateUrl='<%# Eval("ProductURL")
%>' />
</ItemTemplate>
</asp:TemplateField>
The problem is that the image appears in it's original size and I want it to
be 75px / 75px only
Thank you,
Samuel
- 9
- ASP.Net >> =?ISO-2022-JP?B?GyRCIUobKEJXV1cuQ05DSVJDTEUuQ09NGyRCIUsbKEIgY2hlYXBlIHdob2xlc2FsZSBuaWtlIGpvZGFuLCA=?=(www.cncircle.com)professionally wholesale sports shoes from
china,main product including:Footwear-sneakers series
(nike,puma,adidas,Jordan 1-24,nike max,nike shox,nike dunk,nike
kobe,nike rift,bapesta,timberland
boot,D&G,dsquqred,LV,prada,icecream,NBA,lacoste shoes,ect).,T-
shirts,jeans,hootdies/clothes series.,Sandal slippers series.,Leather
belt series.,Handbags series.,Purse series.,Sunglasses,the sun hats/
cap series.,etc.In the short several years, the company by the most
preferential price, the first-class quality, the first-class
service,the first-class security transportation, receives the
domestic
and foreign customers welcome. Product best-selling Europe and
America,france,England, ,Italy, Netherlands,China,Germany,
Greece,,Spain,Portugal,Switzerland, ,Brazil,Chile,Peru,
Korea,Australia,Hongkong,Canada,Mexico, Russia, South Africa, country
and area and so on.
Welcome u coming to business with us !!!
Our msn:tww...@hotmail.com
Our website: http://www.cncircle.com and http://cncircle.photo.163.com
wholesale jewelry, watch, mp3,mp4, iphone.
Nike Air Jordan 1 Seller (www.cncircle.com)
Nike Air Jordan 2 Shoes Seller (www.cncircle.com)
Nike Air Jordan 3 Collection (www.cncircle.com)
Nike Air Jordan 4 Shoes Collection (www.cncircle.com)
Nike Air Jordan 5 Chaussure Shoes (www.cncircle.com)
Nike Air Jordan 6 Catalog (www.cncircle.com)
Nike Air Jordan 7 Shoes Catalog (www.cncircle.com)
Nike Air Jordan 8 Customized (www.cncircle.com)
Nike Air Jordan 9 Shoes Customized (www.cncircle.com)
Nike Air Jordan 10 Wholesalers (www.cncircle.com)
Nike Jordan 11 Shoes Wholesalers (www.cncircle.com)
Nike Air Jordan 12 retailer (www.cncircle.com)
Nike Air Jordan 13 Shoes Factory (www.cncircle.com)
Nike Air Jordan 14 Shoes Sell (www.cncircle.com)
Nike Air Jordan 16 Exporter (www.cncircle.com)
Nike Air Jordan 17 Shoes Exporter (www.cncircle.com)
Nike Air Jordan 18 Offer (www.cncircle.com)
Nike Air Jordan 19 Shoes Offer (www.cncircle.com)
Nike Air Jordan 20 Manufacture (www.cncircle.com)
Nike Jordan 21 Shoes Manufacture (www.cncircle.com)
Nike Jordan 22 CUSTOMIZED (www.cncircle.com)
We Import&Export&Trading&Retail&sell&buy&distribution&
Wholesale Nike footwear and Nikes Sneakers Jordans Sneakers to this
market:
USA,America,US,United States,UK,England,United Kingdom,IT,Italy,
NT,Netherlands,China,Chinese,Germany,DE,Greece,GR,France,
FR,Spain,Portugal,Switzerland,Switzerland,Brazil,Chile,Peru,C
Korea,Australia,Hongkong,Canada,Mexico,Etc
Nike shoes | china nike shoes | air jordan sneakers | cheap gucci
shoes | cheap prada sneakers | gucci sneakers | mix jordan sneakers |
chanel sandals | gucci sandals | dior sandals | wholesale jordan
sneakers | nike running shoes | nike stock shoes | air jordan at
whlesale price | nike shoes air jordan supplier from in china |
Lacoste Trainers | puma trainers | louis vuitton purse | prada purse
|
gucci handbags | chanel purse | coach purse | nike bas kerball shoes
|
Nike Sneakers| cheap nike sneakers | nike shoes from china | nike
replica | copy nike sneakers | nike factory stores | nike stores
Nike wholesale - Nike shoes wholesale
nike jordan sneakers wholesale (www.cncircle.com)
Wholesale Cheap Jordan Shoes,Michael Jordan Shoes,Nike Jordan
Basketball shoes, ... Jordan Shoes,Air Jordan Sneakers,Air Jordan
Wholesale All of the Air Jordan sneakers have
Nike Air in the shoes.Authentic quality Jordan Sneakers Custom Jordan
Sneakers Wholesale Jordan Sneakers gucci sneakers prada sneakers in
(www.cncircle.com)
chanel coach dior DG DSQUARED2 DIESEL,miumiu handbags
sneakers,shoes,t-
shirts,jeans,jackets.We sale new Nike Sneakers,Air Jordan
Sneakers,AIR
FORCE 1S,Nike Dunks SB,Bape Sta from nike outlets and factory
stores,also Nike wholesale-Jordan Shoes,sneakers! china online store!
Cheap Lacoste Trainers Please (www.cncircle.com)
Lacoste Trainers for WomenLacoste Shoes Online Lacoste Shoes for
Women((www.cncircle.com)
Buy Lacoste Trainers Online (www.cncircle.com)
Lacoste Sneakers (www.cncircle.com)
Lacoste Footwear (www.cncircle.com)
Black Lacoste Trainers (www.cncircle.com)
Lacoste Trinity Trainers (www.cncircle.com)
Lacoste Leisure Shoe (www.cncircle.com)
cheap nike dunks (www.cncircle.com)
cheap gucci sneakers (www.cncircle.com)
cheap sunglasses factory (www.cncircle.com)
wholesale nike tshirts (www.cncircle.com)
cheap air jordans (www.cncircle.com)
nike sb china wholesale (www.cncircle.com)
cheap puma sneakers (www.cncircle.com)
sneaker wholesale china (www.cncircle.com)
jordans sneakers (www.cncircle.com)
gucci shirts wholesale (www.cncircle.com)
cheap bape trainers (www.cncircle.com)
shoe wholesalers in china (www.cncircle.com)
cheap nike sneakers (www.cncircle.com)
DISCOUNT nike SNEAKERS,Tennis Sneakers,gucci Sneakers, Prada
Sneakers,Shoes
Jordan's + Wholesale (www.cncircle.com)
jordan wholesale manufacturers (www.cncircle.com)
nike customes (www.cncircle.com)
cheap wholesale jordans nike (www.cncircle.com)
cheap tiffany necklace (www.cncircle.com)
gucci shoes shop (www.cncircle.com)
Wholesale Distributor Authentic Nike Shoes (www.cncircle.com)
wholesale air forces and jordans (www.cncircle.com)
dsquared manufacturers,dsquared womens shoes,dsquared2
jeans,dsquared2
shoes
ed hardy caps,ed hardy caps cheap,ed hardy for cheap,ed hardy hats
for
cheap
addidas wholesalers distributor (www.cncircle.com)
bulk air force ones for sale (www.cncircle.com)
Burberry Handbags made in China (www.cncircle.com)
BUY ARMANI SHOES (www.cncircle.com)
Buy holesale from china GUCCI (www.cncircle.com)
buy jordans made in china (www.cncircle.com)
buy nike shoes at wholesale price (www.cncircle.com)
- 10
- 11
- Frontpage Client >> Ideas WantedIdeas Wanted
Great idea for a website?
Do you need the expertise to develop your idea, create a complicated
website program and move the whole project onto the next stage?
Talk to us and learn how we can do this in conjunction with each other
- maybe at no cost to you.
See http://www.ideas-wanted.co.uk
Regards, John Prescott
Paymaster Systems Ltd,
Moorlands House, Oldfield Road, Bromley, Kent. BR1 2LE
TEL: 020 8467 6107 FAX: 020 8467 6121
e-mail: paymaster@btclick.com website <http://www.oursite.co.uk>
- 12
- 13
- IIS >> ssl and database posting going no whereOk long story short, I installed a SSL certificate this morning and now my
SSL protected subdirectory on my website does not post to my database.. Move
the Exact Same asp page to the root directory with the Same System DSN and it
works perfectly.
website has a root directory at c:\webs\rms with files for general
information. there is a client subdirectory off the root with an ASP page for
them to post new data to our database in the root folder
c:\webs\rms\fpdb\quickupload.mdb an MS access database.
If I go to https://www.rmsinternational.com/clients/quickupload.asp it
doesn't work. No error message and it goes straight to the confirmation page
but never [posts the information to the database. Just seams to go into
Server Hell.
Yet copy the same page into the root directory and run
http://www.rmsinternational.com/quickupload.asp and it works fine.
Can someone please help me??
- 14
- Frontpage Client >> Delay in loadingI have been experiencing a significant delay in loading the pages
ot my web site and I think this is being caused by some parasite
insert that tries to load and present a link on each page of my
web site. This parasite file won't/can't load and eventually
produces a red X in the lower left corner of my web site's pages.
I can't figure out what this is or how to get rid of itl When I
right click on this red X icon I get a window with the following
information;
http://visit.geocities.com/visit.gif?&r=&b=Microsoft%20Internet%20Explorer%204.0%20%28compatible%3B%20MSIE%206.0%3B%20Windows%20NT%205.1%3B%20Q312461%3B%20SV1%3B%20YPC%203.2.0%3B%20.NET%20CLR%201.1.4322%29&s=1024x768&o=Win32&c=32&j=true&v=1.2
Can anyone tell me what this is and more importantly, how to get
rid of it. This site won't open even when I paste the above URL
into my browser's address slot.
Thanks for any insignts. Gordon
- 15
- ASP.Net >> How to set default value in DetailVeiw when Add a record?Hi,
I select a class of students into a GridView, which class's GradeID is 2
and ClassID is 1
then I want to add a students with DetailView, every students has a GradeID
and ClassID field.
How can I set the default value of GradeID to 2 and ClassID to 1 in the
DetailView..
|
| Author |
Message |
SCAB

|
ASP.Net >> Validation for user controls
Hi!!!!!!!!!!!!
I am having a user controls with a textbox. I am using that
user controls in my aspx page in two places. I need to do a compare
validation between two textboxes which inherited from user controls.
how to refer the controltovalidate id. Can someone please help me on
this. One more thing is after the validation is done, i need to open a
new window using javascript, so i have to do validation on buttton
click and open a new window, if it succeeds.
help!!!!!!!!!!!!!!!!!
thanks
dharani
Web Programming317
|
| |
|
| |
 |
| |
 |
Index ‹ Web Programming ‹ ASP.Net |
- Next
- 1
- ASP.Net >> Role of the web.config file with UserControls [2.0]Most of the configuration information for a web application exist in the
web.config file.
We're planning on writing a set of compiled UserControls that could be used
by "any" web site. Of course, we're not going to be aware what information
has already been added to the web site's web.config file, so are a little
apprehensive about relying upon it in case there are any "conflicts". What
should we do...?
Thanks
Griff
- 2
- ASP.Net >> Form authentication and html filesI have an Asp.Net 2.0 application using form authentication. I want the html
pages be protected by the authentication system too.
The accessing of html files need to be authenticated in my local system.
However, it doesn't after I uploaded the files to my web host site.
Any setting to modify to make my hosting html files need to be authenticated
too?
- 3
- Frontpage Programming >> Newbie hyperlink questionOk...I just started building my first website. One question I have is in
regards to images on a page that I use as hyperlinks.
I have an image on my homepage that reoccurs in ever page throughout the
website. I use it as a hyperlink. My question is: Is there anyway I can
change that images hyperlink properties on one page and have the change occur
on every other page automatically? I'm finding it frustrating to have to go
page by page by page to change the hyperlink individually.
Thanks in advance for your time and patience.
--
Learn by asking, then doing
- 4
- ASP.Net >> Confusion About DataBindingThis is a multi-part message in MIME format.
------=_NextPart_000_002A_01C4D59B.882D3DD0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
Am trying to bind a textbox ASP.NET web control to an UPDATE stored proc =
in the codebehind and can't seem to get it working. I'm using a =
dataview, which a SELECT stored proc populates in the codebehind. So =
the class I built to read from the database is fine. But for some =
strange reason, the dataview never seems to get passed the user input =
form the textbox back to the dataview, and thus the update logic while =
working just fine as far as I can tell, is passing old data.
How should I go about tackling this?
Gratefully,
RH
------=_NextPart_000_002A_01C4D59B.882D3DD0
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=3DContent-Type content=3D"text/html; =
charset=3Diso-8859-1">
<META content=3D"MSHTML 6.00.2900.2523" name=3DGENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=3D#ffffff>
<DIV><FONT size=3D2>Am trying to bind a textbox ASP.NET web control to =
an UPDATE=20
stored proc in the codebehind and can't seem to get it working. =
I'm using=20
a dataview, which a SELECT stored proc populates in the =
codebehind. So the=20
class I built to read from the database is fine. But for some =
strange=20
reason, the dataview never seems to get passed the user input form the =
textbox=20
back to the dataview, and thus the update logic while working just fine =
as far=20
as I can tell, is passing old data.</FONT></DIV>
<DIV><FONT size=3D2></FONT> </DIV>
<DIV><FONT size=3D2>How should I go about tackling this?</FONT></DIV>
<DIV><FONT size=3D2></FONT> </DIV>
<DIV><FONT size=3D2>Gratefully,</FONT></DIV>
<DIV><FONT size=3D2>RH<BR></FONT></DIV></BODY></HTML>
------=_NextPart_000_002A_01C4D59B.882D3DD0--
- 5
- ASP.Net >> formshow to solve problems with not being able to have multiple forms on a single
aspx??
im ex php programmer and really find this concept hard to understand.
thx
- 6
- ASP.Net >> Event message: Application is shutting down. Reason: Hosting environment is shutting down.Sorry for the double post (also in the IIS group).
We've got an ASP.Net 2.0 app running on IIS6. We kept losing sessions, and
enabled health monitoring to see what was happening. This morning the got
the following in the logs. Any idea what would cause it?
Event code: 1002
Event message: Application is shutting down. Reason: Hosting environment is
shutting down.
Event time: 7/17/2007 10:28:37 AM
Event time (UTC): 7/17/2007 3:28:37 PM
Event ID: 6cf974868548461ab7d7bc8616a6f455
Event sequence: 426
Event occurrence: 1
Event detail code: 50002
Application information:
Application domain: /LM/W3SVC/1/ROOT/[appname]-1-128291552554452908
Trust level: Full
Application Virtual Path: /[appname]
Application Path: c:\inetpub\wwwroot\[appname]\
Machine name: [servername]
Process information:
Process ID: 6036
Process name: w3wp.exe
Account name: NT AUTHORITY\NETWORK SERVICE
- 7
- IIS >> Out of Process component crashes exceed a limit??Dear All,
I setup a SUS at Win2k Server with AD env. but it always
down. Firstly, it is work and then for some period, say
around 20 mins, then it down. I checked the event logs, it
shown 3 error events as following:
Event 1:
Software Update Services failed to load some configuration
information. Examples of configuration information
include: proxy server configuration, content location, and
client locales to support. Because not all configuration
information was loaded successfully, the default settings
will be used instead.
User Action
To confirm your configuration, go to the Software Update
Services Admin Web site
(http://<YourServerName>/SUSAdmin), and click the Set
options link.
Additional Data
One or more errors occurred while loading the settings
file 'C:\inetpub\wwwroot\autoupdate\dictionaries\settings.t
xt'. (Error 0x80070057: The parameter is incorrect.)
For more information about administering a server running
Software Update Services and for a list of the default
values, see the Microsoft Software Update Services
Deployment Guide (http://go.microsoft.com/fwlink/?
LinkId=6928).
Event 2:
The server stop serving requests for
application '/LM/W3SVC/1/ROOT/autoupdate' because the
number of Out of Process component crashes exceed a limit.
For additional information specific to this message please
visit the Microsoft Online Support site located at:
http://www.microsoft.com/contentredirect.asp.
Event 3:
Out of process application '/LM/W3SVC/1/ROOT/autoupdate'
terminated unexpectedly.
For additional information specific to this message please
visit the Microsoft Online Support site located at:
http://www.microsoft.com/contentredirect.asp.
I would like to ask how to solve the Out of Process
component crashes exceed a limit? I think it is the reason.
Or any other idea?
Thanks a lot.
- 8
- ASP.Net >> Newlines in DatagridI have a very simple Datagrid with one bound field. The field has
Environment.NewLines in it. When the datagrid is rendered, they don't
appear.
I have tried a few of different ways to get them to appear:
1.) Replace Environment.NewLine with <br> before saving to the
database.
2.) Replace Environment.NewLine with </br> before saving to the
database.
Neither of these work because ASP.NET just ends up printing out the
literal <br>, </br>.
Is there a way to replace the Environment.NewLines when the datagrid is
rendered? Alternatively, is there a specific value I should be saving
to get the Datagrid to properly render the <br>?
- 9
- ASP.Net >> Datagrid, posted data, and viewstate sizeI have a datagrid on a page .. which can be very large .. a couple of
hundred rows and 20 columns. Some of the columns are custom templates
allowing the user to enter in text or select a checkbox .. since there are
several postbacks while interacting with the page .. reducing the viewstate
size is important. I've thought about setting the viewstate to false on the
grid and rebinding on a postback but how would I go about capturing the data
posted back to accurately update a copy of the dataset on the server which
is bound to the grid.
Randall
- 10
- ASP.Net >> Searching for free hosting with ASP.NET 2.0Hello,
Can you tell me please if there is any provider that offers free hosting
with ASP.NET 2.0 for non commercial use ? I tried a few I found googling but
they are not available right now.
I know I can test the websites on my own pc, but I would like to test the
"real thing", you know.
Thanks,
--
Roger Tranchez
MCTS (Windows)
.NET 2005 and DB developer
- 11
- Frontpage Client >> Bad News :(Ladies and Gentleman, I regretfully inform you that I am
switching to Dreamweaver, and I will no longer be posting
on this forum. Thanks to everyone that has helped me along
the way.
Your Friend,
Crash
- 12
- ASP.Net >> Tree view and content place holderHow do I put my tree view control inside a content place holder? I
drag it there but it doesn't seem to appear in the correct spot.
P.S - I have a master page with a content section representing the
"body" of the page.
Mel
(Asp.net 2.0, Visual Basic, WinXP Pro SP2)
- 13
- Frontpage Client >> Top border (again)I'm still having trouble removing the top border black outline see
http://www.book-holidays-direct.com/America.htm
I don't use a theme as all pages are set as 'No Theme' but I still can't get
rid of it. Please help if you can. Fred
- 14
- IIS >> Unable to access server environment variables in IIS 6 w/ ASPI'm currently running IIS 6 with ASP and SSI allowed. I have developers who need access to system environment variables and do not want to use the global.asa file. They are able to use PERL to access the variables, but there has to be a way to get ASP access
Using Request.ServerVariables(...) to retrieve variable on IIS 5 and cannot use the same method on IIS 6. Not receiving errors, but also not receiving data
Any help is greatly appreciated
Thanks
Jacob
- 15
- ASP.Net >> Business intelligence portali need to customize the pivot table view in business intelligence portal, i
need to add a double click event to this pivot table component, but i can not
find any documentation about how to do this.
do i have to create a new customized view from a new pivot table?? or can i
customized the view that is allready install??
any help would be great, thanks in advance.
|
|
|