Jump to content
Xtreme .Net Talk

Robby

Moderators
  • Posts

    3848
  • Joined

  • Last visited

Everything posted by Robby

  1. you can AddAtributes to the Body from your server code.
  2. So you will be parsing an html report that you created in the first place?
  3. Would it not suite you better to setup a Web Service then make requests to the service?
  4. I don't know if 2003 includes the setup wizard, you are licensed to distribute the framework it is a free download from MS. As I stated earlier, you don't need the plugin.....read this ... http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnnetdep/html/redistdeploy1_1.asp
  5. Follow this link... http://www.xtremedotnettalk.com/showthread.php?t=49500 Once you can create a setup package then it's up to you to include MDAC, the Framework or any other dependancy within your package.
  6. HAve a look here http://samples.gotdotnet.com/QuickStart/aspplus/default.aspx?url=/quickstart/aspplus/doc/webdataaccess.aspx
  7. You cannot send a print job from the server to the client using server side code, you need to do this using JavaScript. ( window.print() )
  8. Is this a trick question? :) ini.Write(TextBox1.text, "NickName", TextBox1.Text)
  9. Path to the file, since the first argument in the FileStream states "absolute or relative path to the file" The database should be fine since you already have a conn object that you are opening.
  10. Isn't that what I said "...filter by Type or xType"
  11. It should be either an absolute or relative path to the file. Also try and explicitly cast your data types, for example Length is Long, but an Int is required. Dim Picture(Convert.ToInt32(fsimage.Length)) AsByte
  12. Does File_TextBox contain the full path ?
  13. Is this a web form or WinForm?
  14. What method are you using and do you receive an error message?
  15. Here's a Select that will give you the required columns... SELECT C.CustNum, C.LastNAme, O.OrderNum, O.OrderDate, I.Description, L.LIQuantity, I.Cost, I.Price FROM (Customer AS C INNER JOIN Orders AS O ON C.CustNum = O.OrdCustNum) INNER JOIN (Item AS I INNER JOIN OrderLineItem AS L ON I.IemNum = L.LIItemNum) ON O.OrderNum = L.LIOrdNum
  16. This can be solved with a single Select statement, the question is how do you plan on displaying the data to the user, will you use a single datagrid or parent/child grids or something else.
  17. Also, you can use one CSS file for all your pages. You may want to look here http://www.w3schools.com/css/
  18. I'm talking about any kind of security, of course since you'll be in an intranet environment you're better off using Windows Authentication.
  19. Here's a trimmed version of a web.config file that will send anonamys users to the login page only if they attempt to access pages in the Admin directory, in other words create a folder named let's say Admin and place the secured pages there. <configuration><system.web> <authentication mode="Forms"><forms name="myTest" loginUrl="Admin\Login.aspx"/></authentication> <authorization><allow users="*"/></authorization> </system.web> <location path="Admin"><system.web><authorization><deny users="?"/></authorization></system.web></location> </configuration>
  20. Aside from security I can't think of any other differences.
  21. You can place your controls in an HTML table.
  22. Look into Forms based Authentication. http://samples.gotdotnet.com/QuickStart/aspplus/default.aspx?url=/quickstart/aspplus/doc/formsauth.aspx or http://www.google.com/search?hl=en&ie=UTF-8&oe=UTF-8&q=Forms+based+Authentication+asp.net
  23. You really should consider using tables or even CSS or both. Tables would increase your design time speed and make the layout more accurate.
  24. Most of the following samples use Sql Server but can be applied to Access with great ease... http://samples.gotdotnet.com/QuickStart/aspplus/default.aspx?url=/quickstart/aspplus/doc/webdataaccess.aspx
  25. The command object already has you sql string, you cannot assign it to th dr. Have a look here before you continue http://samples.gotdotnet.com/QuickStart/aspplus/default.aspx?url=/quickstart/aspplus/doc/webdataaccess.aspx
×
×
  • Create New...