Search

You searched for the word(s): userid:700959

Matching Posts

  • Re: Getting "The resource cannot be found" using href=

    Hello my friend, I would take out the initial slash in the url so it starts with CoyneWebServices. Even better would be to use an absolute url like so: - <a href="http://www.mysite.com/CoyneWebServices/File Maintenance/Warehouses.aspx">my link</a> Kind regards Scotty
    Posted to Web Forms (Forum) by ask_Scotty on 8/4/2007
  • Re: automatic refresh of grid after scanning barcode

    Hello my friend, I have done an example page for you. Feel free to try it out. If you change the contents of the textbox by either entering/deleting a character or by pasting in another value, the page submits. Kind regards Scotty <%@ Page Language="VB" AutoEventWireup="false" CodeFile="PostBackTrick.aspx.vb" Inherits="PostBackTrick" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" " http://www.w3.org/TR/xhtml1/DTD/xhtml1
    Posted to Web Forms (Forum) by ask_Scotty on 7/14/2007
  • Re: gridView Style

    Hello my friend, You can use this (where DestinationName is the name of the field): - <asp:BoundField HeaderText="Destination" DataField="DestinationName" ItemStyle-Font-Bold="true" /> However, if you need to further customize the display of the field, you can use a TemplateField like the one below, which adds some text before the field content. <asp:TemplateField HeaderText="Destination" ItemStyle-Font-Bold="true"> <ItemTemplate>
    Posted to Data Presentation Controls (Forum) by ask_Scotty on 7/14/2007
  • Re: Object reference not set to an instance of an object working in debug mode but not in IIS virtual directory

    Hello my friend, Could you provide some source code and the error details that you get, line number, etc? Kind regards Scotty
    Posted to Getting Started (Forum) by ask_Scotty on 7/14/2007
  • Re: Anyone know a good tester? ---Please Help me!!! i'mdesperate,,,,

    Hello again my friend, I am afraid you need the Visual Studio Team System. It has lots of additions but the following link gives more detail about the specifics included for testing: - http://msdn2.microsoft.com/en-us/library/ms182409(VS.80).aspx Kind regards Scotty
    Posted to Configuration and Deployment (Forum) by ask_Scotty on 7/10/2007
  • Re: Are NET Mobile Web SDK pages compatibe in all browsers?

    Hello my friend, On your machine, browse to the C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\CONFIG\Browsers folder and you will see a list of browser files that contain information on whether they support cookies, colours, bold text, tables, etc. The v2.0.50727 part of the location path will be different if you are not using .NET 2 but I imagine you are. Kind regards Scotty
  • Re: Report in SQL Server 2005 - Suggestion needed

    Hello my friend, I assume that your procedure for the calculations works but it is just slow. My advise would be to create a new table that stores this calculated information. After all, it will not change once calculated. What your employee earned last month each day will not change because it is in the past. Your calculated table, which you will populate from your stored procedure that does all of the current calculations would look something like this: - EmployeeID DayDate Amount 101 2007/08/01
  • Re: Response.flush() page not working on redirect

    Hello my friend, The content you are trying to flush is so small that the browser does not bother to flush it. The code below gets around this by printing the number but adding a lot of blank spaces after it (which will not affect the actual display because several blank spaces are only treated as one but it does make the output large enough for the browser to flush it). Your amended code is as follows: - protected override void OnInit(EventArgs e) { Response.Buffer = false; for (int i = 0; i <
    Posted to Web Forms (Forum) by ask_Scotty on 7/8/2007
  • Re: SQLdatasource set default value of parameter to current date

    Hello again Bonekrusher, In the parameter declaration, leave out the defaultValue attribute. Then in your code-behind of the Page Load event, use the following: - ' if using VB If Not Me.IsPostBack Then myDataSource.SelectParameters("original_lastsaved").DefaultValue = DateTime.Now End If // if using C# if (!this.IsPostBack) { myDataSource.SelectParameters["original_lastsaved"].DefaultValue = DateTime.Now; } Kind regards Scotty
  • Re: how to bind/eval repeater to values in a numerically indexed array

    Hello again my friend, You do not need to use Response.Write for displaying things. The data controls (Repeater, DataList, DataGrid, GridView) handle this for you. When using expressions within these controls to display fields from the data source, the hash symbol is mandatory. Outside of these controls when printing variables, such as querystring parameters, use the equals sign to print variables: - <%=Request.QueryString["Name"]%> There are plenty of example web page scripts here
    Posted to Data Presentation Controls (Forum) by ask_Scotty on 7/7/2007
Page 1 of 71 (704 items) 1 2 3 4 5 Next > ... Last »