Building An Intranet With ASP.NET
My work has decided to give me the job of building them an intranet. Being pretty new to .NET and ASP in general I was wondering if anyone knew of books or sites I should take a look at that might help me get started.
View Replies
ADVERTISEMENT
I built an ASP Form and I'm using CDONTS to e-mail the results to me.
After the user clicks on the "Submit Form" I use ASP to send a ConfirmMsg
back to the user.
At the same time I would like to send back a Hyperlink .
The Hyperlink will take the user back to some other part of the site, For
Exampe I want to send a hyperlin to
http://www.mydomain.com/index.html
I want the link to appear after the Server processes the ASP Form.
Can anyone help me with the ASP code fot a hyperlink.
View Replies
View Related
When assembling an HTML string from a database before sending it to the
client (ie keeping the connection as short as possible), adding to an
existing string (strOut=strOut & strNextLine) takes time and can defeat the
object.
Is putting each line into an array, and re-dimming the array by +1 each time
quicker? Is there a better way?
View Replies
View Related
When i make a menu box i forms(where you can select multiple options) the result from the form will be something like :
value1, value2, value5, value7
How do i easily build a sqlstring like "select * from tablename where record="value1" or record="value2" or record="value5" or record="value7"
View Replies
View Related
Here is a line of code I have:
matchmakerdetails=fullname & " (<a href='javascript:void(0)' onclick='clearmatchmaker();'>Remove</a>)</p>
This works just fine. BUt what I need is to add code to the onclick such that
document.GetElementById("matchmakername")=""
THe darn quotes/syntax are messing me up and I can not get to work. The challenge for me is that this is part of an asp string assignment to a variable called matchmaker details.
View Replies
View Related
<input name="Name" type="text" value="<%= Server.HTMLEncode(Name) %>" size="50" maxlength="50" onchange="GetName(this.name,this.value)"/>
Email Address:
<input name="Address" type="text" value="<%= Server.HTMLEncode(Address) %>" size="50" maxlength="50" onchange="GetAddress(this.name,this.value)"/>
<a href="javascript: UPDATE(<%=rs("Id")%>)"><img src="SomeImage File" border="0"></a>
Code:
View Replies
View Related
I have a database of quotes on my website that uses an Access 97
database (I'm cheap...I have an old copy of MS Office). I have one page
that builds a form <select> from a SQL statement that looks like this:
SELECT DISTINCT last, first FROM quotes ORDER BY last, first;
The results are 1,250 records from a 3,700 record table.
I loop through the records, using each to build an <option> for the
<select>. When loading the page, it gets to the <select> and then it's
like someone issued a response.end, because it just dies after about 3
seconds. and I get an incomplete page; looking in view source it is
literally truncated right before the form <select>.
Of course it works at home, but not on my "production" site.
I've tried all kinds of things like executing a stored Access query as
adCmdStoredProc, but it didn't help. I'm not even sure if that method
was even any faster when I ran it at home.
Is there anything else that you folks know of that I could try, or am I
just going to have to bite the bullet and come up with an alternative
way to let my users select the source of the quote?
View Replies
View Related
I have an old web app that ues an Access database and ASP 3.0. I need to build an INSERT statement based on the contents of a form. What is the best way to handle blank text boxes that are submitted with the form?
For example, I collect all my name/value pairs that are submitted with the form like this... Code:
View Replies
View Related
I am building an application via ASP that uses an MS Access database to hold inventory for large truck dealerships. I have two columns in the database, one for thumbnails and one for regular (about 450 pixels wide) sized images. The columns in the database hold the URL's to the images in the folders.
I need to create a photo upload that accomplishes the following things:
1. Will re-size and rename the photograph regardless of what the user has it named and sized as. I would like to be able to have the code create the thumbnail and the larger image if that is possible.
2. I need to be able to have that photograph attached to the inventory information that goes with it.
I have a very basic page built, but of course, it does not do any of the "fluffy" stuff I mentioned above. I am not very good with VB and most of what I have seen out there is really contingent upon knowing VB. I tried using a 3rd party application, but to be quite honest, it sucked. Having said that, can any of you point me in the right direction toward having the above features?
View Replies
View Related
http://www.mydomain.com/customer.as...st=il&zip=12345
I build the above link dynamically from the customer's input. It works fine
until they put inthe '#' symbol. The result is the string works up to that
point, then breaks. The trailing information is lost. I use the above to
fill-in form boxes. What can I replace '#' with that will allow the string
to continue? ... and of course, be placed in the form box correctly.
View Replies
View Related
I am working on this for someone: the user sees a list of chocolates which they can click on to add to a virtual chocolate box.
Each choc. is represented as an image of the choc - clicking on the image adds that choc. into a db. storing the product id of the selected choc. The user can select 8 chocolates. When the box is full, they can select no more chocolates.
I loop through the db. to display the number of chocs in the cart, like this: Code:
View Replies
View Related
i recently started learning ASP and now i am trying to do some on my home computer.
After doing a few things in my ASP.Net application, i click Build -> Build Solution and then it says this in the output window:
Preparing resources....
Updating references....
Performing main complation....
and then it stays bugged at that section. Then i can go back in build and cancel the building process...
Anyone know what might cause this, my computer is fairly recent and i did re-install Visual Studio .NET to try and fix this problem without any success... I also tried making other applications and it does the same thing...
View Replies
View Related
I have a lot of information to fill out on this form. So I'd prefer not to do the submit to itself everytime to rebuild it. I've seen many java script examples on how to dynamically populate a checkbox, combo box etc. but is it possible just to not have the box there at all?
I've seen a .visible=false on spans in aspx, but can you do something similar to this with plain old asp?
Example, i have a combo box, and let's say i select a few options and write a "on change"..... i call a function that makes an attribute .visible false. Is this possible to make a text box disappear off the page without resubmitting the from? If not, any other bright ideas on how to do this one?
View Replies
View Related
Does anyone have any experience building bar graphs or charts in asp? Or has anyone used a dynamic bar chart generator that is easy to use and easy to integrate into a webpage?
View Replies
View Related
How do I register that a user has left the website or page? I'd like to show "users online" and "users on this page" counters.
View Replies
View Related
i want to generate the an include file such as
<!--#include file="nav/nav_1.asp"-->
but by calling the number from strNav
<!--#include file="nav/nav_<%=strNav%>.asp"-->
i have several combinations of quotes etc but cant get it to work . is there a way?
View Replies
View Related
I just got a new offer of a company to build them an application framework with a supporting IDE front-end, now the problem is i come from the PHP boards and already checked what Java could do for me but now i find they want it all done in ASP/.net.
Now i know some c# and already read some part's of the books i had at home but i know nothing about ASP, so i bought some books but they cover programming basics which im already familiar with.
Are there any pages that cover patterns done in ASP, schema's or anything i tried the microsoft MSDN page but that's just tooo much information if your not sure of what information you need to contain. Anyway, are there ppl who can send me into the right direction so i can start learning about framework development in ASP or do i need to look further then my nose is long ?
View Replies
View Related
I wish to build a select statement with the "WHERE" part is a variable. I know how to do
Select * FROM table WHERE colum = '" &variable& "' But what if I want the whole part after WHERE to be a variable? with acutal other variables in it.. for instance....
Dim rs, var1, var2, QryString
Set var1 = 1
Set var2 = 2
set QryString = colum1 = '" &var1& "' AND colum2 = '" &var2& "'
rs = Conn.Execute("SELECT * FROM table WHERE QryString")
I am looking for the correct syntax in this case... assume my database connections and such are correct.
View Replies
View Related
I am currently using a single list box and select case to carry out a search for resources on my website. I would like to improve my search by adding two or three more drop down menus to achieve a single, more detailed search.
Hopefully this will help the end user find what they are looking for. unfortunately the current search is rather broad and i need to narrow it down. How do i go about achieving this?
View Replies
View Related
My ISP provides a web based email client, but it is not brandable and the features are not that extensive. I'd like to build my own. Has anyone done this, or is anyone aware of any tools out there to do this?
View Replies
View Related
I am developing a system that needs really security,but on INTRANET.Do I need SSL??
If yes how will I use SSL in ASP??
View Replies
View Related
Please recommand any intranet examples with the good navigation and interface design?
View Replies
View Related
I have got a little experience with web design, and have produced a basic website for a local charity run advice centre.They have a variety of forms, some in PDF format, some hard copies, which at present they fill in by hand then post out. We have been talking about moving towards a paperless office for them and a way to automated form filling. My best shot was to look into creating an Intranet for them and using ASP we could be able to fill the forms in on the PC then print out.
Are there any specific things that need doing to the server to run an Intranet, and as I said earlier, I'm new to ASP so I wanted to know if anybody has any Ideas or templates that would be useful to help me with this project?
View Replies
View Related
There are 3 pcs on a network in the office and I am designing some stuff using an access db and asp pages. Instead of everyone using my pc, they want to be able to logon and work off it from their pc. I just type in http://localhost/mysystem and I can access it but I don't know what url they need to type in to access the pages?
View Replies
View Related
I have a comments form on Intranet.And I want the information written by users on this page send to my e-mail address,and the user doesn't have to write his/her mail address on this form.We are on same domain.The free scripts use smtp but no need while sending mails over Intranet
View Replies
View Related
I could do with a little help with the code below,
<input name="order" type="hidden" value="prod=<%=RS("product_name")%>,item_amount=<%=RS("product_price")%>x<%=RS( "cart_quantity" )%>;prod=SHIPPING, item_amount=<%=postage%>">
I am trying to build 1 hidden input field only, the input is inside a while not EOF loop,
currently the code above is building an input field from each product record, so i get one hidden input from each item, what i think i need it to do is build a string from the records and then put it into the input field i.e. the final input field should look like this: Code:
View Replies
View Related
We use an ASP application in which we send out emails using cdo for various
events.
At present the email text is hard coded into the code. for example
strMessage = "Dear " & rs("firstname")
strMessage = strMessage & "Your request has been approved with reference id
" & rs("id")
This causes an administration overhead as everytime the text of the message
needs to be changed we need to alter the code to incorporate text or
database values.
What we want is to store the message text into a table so it can be altered
by the application administrators through GUI by adding the text through
freetext entry and field names though a dropdown. Code:
View Replies
View Related
I'm currently working on an Intranet for one of our clients. I'm developing a user directory for them using a SQL Server database.
My client has provided me with the information to connect to the server remotely via windows remote desktop connection. I would like to know how I go about getting Dreamweaver to connect to the database?
Will I have to create a database locally and then publish the local database onto their server or, can I create the database on their server and using DW to connect to it?
View Replies
View Related
I have developed a company Intranet page,and have the requirement of adding a search function to it. My question is,i need a simple search solution, that will search through my site which has include files.What tool do you recommend to run that will index my pages?
View Replies
View Related
I have an Intranet website that our corporate users and customers access to pull up information on various things. I now have to publish content that should only be available to corporate users. I do not want to create another website or use host headers... there is no login page or anything today within the ASP pages.
What is the best way for me to host content that only internal users can see? I thought about removing all NTFS permissions to the "private" directory where I plan on having web pages... thinking that IIS would prompt users when trying to access pages within this directory. For some reason, IIS still displays the page. I'm not sure what I'm missing.
View Replies
View Related
I'm dowing a web site on my intranet in a ASP page I have to made save option, on the intranet everything is working fine, but when I upload my website in the internet I have this message:
The page cannot be displayed
There is a problem with the page you are trying to reach
and it cannot be displayed.
What is the probleme my page is in ASP and on intranet it's working fine.
View Replies
View Related
I am currently preparing my final year university project and dissertation, for which I am developed an Intranet system for a local company.
The company requires an online calendar similar to functionality of the one in Outlook. However, they would also like to integrate an appointment reservation booking system into the calendar, so meeting rooms/employees can't be double booked etc.
I will be developing the Intranet system in ASP because of the company's hosting package.
I have looked about on the Internet for free scripts or applications but all the ones I have seen are no good and don't contain the functionality I am trying to achieve.
View Replies
View Related
How can I programmatically in ASP detect the difference between being on an Intranet (ie no outside www access) and the Internet (where can can get www access) ?
I have a program, which has a registration module being built. The module automatically skips across a couple of servers and checks the registration codes, and skips back to the program and informs it the registration code is authentic;
the program there after continues as normal; one of my users wants to install the program on an intranet in their office - I have no problems with that except the registration system will keep stalling and requesting a valid user registration code:
View Replies
View Related