Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: toptomato
  • Content: Threads
  • Order by date
  1. toptomato

    Safari looses session

    hi, i have a http handler class that implements: IHttpHandler, IRequiresSessionState in the class we are accessing session. Which works fine in IE, however on safari, i am loosing values for all the session variables. Session is not null, however, all the session variables are loosing values...
  2. toptomato

    relative urls

    hi, on my development machine the url to the common images is following: http://localhost/Prototype/StoreFront/CommonImages/ I have two pages: http://localhost/Prototype/StoreFront/index.aspx & http://localhost/Prototype/StoreFront/Public/category.aspx both of the above pages have a image...
  3. toptomato

    HTC question:

    I have an scrolling div enclosed in an atlas update panel. after a callback, the div scrolls to the top. After months of research i found the only way to fix it was through HTC. I don't know much about HTC, but i tried implementing it unsuccessfully. If you guys to look over the code and give...
  4. toptomato

    newbee question want to set a value of text box to the value of a rb

    hi, i am trying to set a value of a text box to the value of the radio button when radio button is click. below is what i am trying to do: <script type="text/JavaScript" > function SetValue(of, to) { if (document.getElementById(of) != null && document.getElementById(to) != null) {...
  5. toptomato

    ASP.net 2.0 Forms Authentication spordically fails.

    I have ASP.net 2.0 Forms authentication enabled: My web config settings are: __________________________________________________ <authentication mode="Forms"> <forms loginUrl="~/SSLPublic/Login.aspx" protection="All" timeout="30" path="/" requireSSL="false" slidingExpiration="true"...
  6. toptomato

    xml file won't display unless it has xml extenstion

    hi folks i am trying to generate RSS (xml output) through asp.net I perfer the page to have the aspx extention. The page (rss.aspx) out puts xml by means of: Response.Write("<<proper rss xml here>>"); Response.End(); however in the browser (both ie and netscape) it doesn't display the out...
  7. toptomato

    asp.net 2.0 @ Register tag question

    Hi folks, wondering if someone can help me with this. Is it possible to define Src attribute for the @Register tag at runtime. below is an example of @Register tag, and i want to be able to specify the src (somefile.ascx) attribute at runtime <%@ Register Src="somefile.ascx" TagName="c1"...
  8. toptomato

    saving transparent images in ASP.net 2.0 C#

    Hi folks, Thanks in advance to all of you geniouses. Here is what I am doing: This is an ASP.net 2.0 with C# problem. I am reading an image file (either: gif, jpg or png of any dimension) as such: Image rImg = Image.FromFile(RawFilePath) Next I create a Bitmap and extract graphic as such: Bitmap...
  9. toptomato

    regex needed for text box

    Hi guys, i can believe i spent 2 hours and still can get it right. all i need is a reg ex that would allow on alphanumeric or empty spaces in the text box. the following does not work: ^[\w\d\s]* Since this also allows &, ^ and what not. help
  10. toptomato

    ASP.net and Table Variables in ASP.net 2.0

    Hi guys i am having problem using stored proc that contain table variables while developing in VS2005. I use a table variable in one of the stored procedure: Declare @TempTable Table (RowNumber int IDENTITY PRIMARY KEY, Name varchar(50)) In VS 2005 when creating a table adapter it given an...
  11. toptomato

    building a light(small) SQL Search engine to search products database

    Hi, I am attempting to build a small scale (light weight) SQL search engine (basically a stored procedure) to search through Products Table. I am passing a search string, which i break up by the ' ' (space) delimiter. next for each [value] (after breaking up) in the search string I want to be...
  12. toptomato

    Can bindable properties be created for a User Control

    Hi I have a user control with the following property: [Bindable(true), Category("Data"), DefaultValue("")] public int TotalNumber { get { return (....); } set { (...) = value; } } Now theoratically if i put...
  13. toptomato

    unable to Runas /profile /user:MyComputer\ASPNET cmd

    thanks in advance to every one I am trying to run a command in command prompt under ASPNET account. But it prompts me for a password. What should i do. Help.
  14. toptomato

    same tricky date time question

    hi guys i am posting this again hoping to better articulate the issue in hopes to find solution to the problem. here is the senario: Webservice1 runing on a server in EST Time Zone return a dataset with a DateTime Column in it. Consumer application running on server1 in PST Time Zone calls...
  15. toptomato

    Tricky DateTime Question

    I have a webservice that returns a dataset that contains a datetime field. The server hosting the webservice is in EST Time zone. The consumer application is on a Server in PST Time zone. When the consumer application gets the dataset returned by the webservice, it then binds that dataset to...
  16. toptomato

    Can an embeded web user control call a funtion in parent user control

    hi guys, I have one user control (lets call it user control B) embedded in another user control (lets call it user control A). Is it possible to call function in user control A from a function in usercontrol B? thanks guys
  17. toptomato

    dll and webconfig question

    Hi guys here is fun one. so i have this project called ProjectA which reference another project called ProjectB. Now just to make it clear in visual studio 2003 I went to ProjectA, right clicked on references folder and clicked add a reference, clicked on the project tab and choose ProjectB...
  18. toptomato

    databinding in ASP.net 2.0

    hi guys, in asp.net 1.1 one was able to bind web form's TextBox's text property to a datasource. Example: suppose there are 5 different textboxes in a web form. The webform also has a dataset in the designer view, which has a datatable called values, and in that table there is only one row...
  19. toptomato

    gridview question

    In the old days datagrid however using a dataset as a datasource would still required databind() before it can render on the page. Now a days, GridView using objectdatasource as its datasource doesn't require databind() in order for it to appear. It appears automatically. Is there a way to...
  20. toptomato

    Data Access in ASP.net 2.0

    hi folks, asp.net 1.1 Senario: embeded link button with the command name of 'SAVE' is fired in a datagrid. DataGrid's ItemCommand method is called and in that method we can use the following commands to get the necesary information we need to do our tasks: e.Item.ItemIndex ---> to get the...

Part and Inventory Search

Back
Top