Jump to content
Xtreme .Net Talk

takesoln

Members
  • Posts

    18
  • Joined

  • Last visited

Everything posted by takesoln

  1. Dear All, I get the error following error when I try to access my ASP.NET application through IE Server Error The following error occurred: Cannot connect due to potential loopback problems --------------------------------------------------------------------------Please contact the administrator. [/b] I googled for the error, and it was suggested that i uncheck the [b]"Automatically detect settings"[/b] check box under [b]IE->Tools->Internet Options-> Connections -> LAN Settings -> Automatically detect settings check box[/b] I did that, and the problem still persists. I noticed that when I say Http://Localhost/MYApp, it automatically re-directs to some other IP address.I also tried using my machine name, in place of Localhost. Still doesn't work ! Could it be a problem with the DNS ? ( My organisation's domain allocates dynamic IPs every time i logon to the network) I also tried opening a new asp.net web application, but this does not happen either ! I am using IE 6 and IIS 5.0 Any clues what needs to be done ? Thanks in advance :) Regards, Take
  2. Hi, I am trying to design something like the Google Toolbar. It shuld be installable and it should dock with the Browser(IE). Can you tell me how i can do it ? I want to use C# .net. Can i use band objects in C# ? Please help Me out. I am Clueless ...
  3. Hi George !! I understand , but could you please give me the Code for copying sybase data to SQL ? Thanx George
  4. SOS !!! hi ! I am trying to migrate data from Sybase to SQL server2000. I have a tool to do that. I Have to check if the table structure and the data are identical in both the databases ( sybase and SQL server2000) My problem is i have 900 tables and comparing the two manually will take ages ... Is there any other way to do that ? i mean is there any way which will help me do the comparison in a short time ? HELP !!!
  5. Hi, Try setting the datagrid's AutoPostback property to true. Then, in the event handler's methods, for (e.g edit click event) check if the "Handles datagrid1.clicked" is present.
  6. Use a Place holder hi ... Use the placeholder control for alignment and create your dynamic controls within the place holder. If you are using the controls to postback data, then don't create them outside the page_load method. If you want to do the control creation, you have to do it before the page framework's SaveviewState method is invoked. you can override this method using the onPrerender method.
  7. Superfly , Do you mean to say that My Application Server Should necessarily be my Web Server ? if so why? I tried creating a virtual directory in my IIS , for an application which resides in another machine. The directory gets created with an error after asking for the remote machine's username and password and a password confirmation ... can you tell me why ?
  8. Hi ... How do i have My application and my IIS in two different machines ? Will i get any performance gains ? My hypothesis is, if i have an extra processor and an extra RAM, It would boost the performance ... WILL IT ??? Let me know ... :cool: Bye
  9. Hi ... I am creating a Textbox within a place holder, on a Button_Click Event ... i.e. At runtime ... But, i am not able to get the value of the text box, on PostBack ... I know that the control has to be re-created every time the page loads, but i don't know how to manage state for the dynamically created control... My code is, Private Sub Cash_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Cash.Click Dim txtbox As New TextBox() Dim btnOne As New Button() txtbox.Width = Unit.Pixel(100) txtbox.Height = Unit.Pixel(20) btnOne.Text = "buttonClear" PlaceHolder1.Controls.Add(txtbox) PlaceHolder1.Controls.Add(btnOne) 'End If End Sub I would appreciate it if you could suggest how i can manage this control thru my code ... If possible, give me some sample code too ... Thanks ...
  10. try giving the full path of the .aspx file for eg: Response.Redirect("http://yourApplication/YourPage.aspx") ;)
  11. I presume that you would have done something like this .. Do While YourDataReader.Read() ' your code here Loop after you have done this, and you don't have any further use for the data reader, use this YourDataReader.Close().
  12. I tried what you said plausiblydamp and Dimple... It works !! but, the textbox does not persist on some other event i.e. if the page loads again, the textbox disappears( Naturally .. because, the control does not exist ... so if i want to have the control after the page refreshes, what should i do ? hope you get my point ...
  13. This Does not work because, each time the page loads, the valiable will be initialized. I tried it with a session variable, but that doesn't work either ... can you suggest something so that the above mentioned textbox will not disappear after the page loads again ?
  14. try restarting your computer and deleting your project's temporary files from the following path C:\WINNT\Microsoft.NET\Framework\v1.0.3705\Temporary ASP.NET Files\"your project" this might solve your problem.
  15. Hi, I am drawing a textbox when a button is clicked. But, i want this to be done for the first time the user clicks on the button. My code is Private Sub Cash_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Cash.Click Dim txtbox As New TextBox() txtbox.Width = Unit.Pixel(100) txtbox.Height = Unit.Pixel(20) PlaceHolder1.Controls.Add(txtbox) End Sub how do i track down the number of times the button has been clicked ? :o help me out ...
  16. takesoln

    Locking

    when a particular record in the database is edited by a client then all other clients must be denied to access the particular record in edit mode.how to achieve this in a web application
  17. I am currently using a Tab strip control with 7 tabs ( and 7 multipages ofcourse ! ). There are some 100 controls in my page (roughly, 20 controls in each tab). So the page takes a long time to load. My problem is, i don't need all tabs on all cases. for E.g. only if i click tab3 , i need tab5 (and the controls like DataGrids in tab5). So, What alternative do i have ? the alternative should be performance boosting. Can you suggest some thing good ? Gawd !! please help the guys out there to find a solution !!! ;)
×
×
  • Create New...