Search results for query: *

  • Users: Gibou
  • Content: Threads
  • Order by date
  1. G

    Office driving does not work anymore

    Hello, I've added an action in my asp.net website which allows the user to generate some doc and xls documents based on templates (a dot file for Word and a xls one for Excel). I worked since the end of last week but I don't understand why, now, it doesn't work anymore and I would like to have...
  2. G

    unknown project

    Hello, I have to work on a project begun by another developer. This project is an asp+vb.net one so I thought it was a "ASP.NET Website with code behind in VB.NET" but it isn't so. When I click on the .sln file, Visual Studio .net tells me that it can not open the vbproj file although it has...
  3. G

    File Exists error

    Hi, I'm using .NET 2.0 for this application. Before loading an xml file, i would like to be sure that the file exists. So I've that : if File.Exists(CoreApplication.ApplicationPath & _xml_file) where CoreApplication.ApplicationPath contains that ...
  4. G

    RegisterClientScriptInclude

    Hi, I want to dynamically insert a <script type="text/javascript" src="..."></script> into my <head></head> markups. I've seen I have to use the method RegisterClientScriptInclude. I'm in .net 2.0 in this project and this my code: ' Include some javascript external files Dim jScript As...
  5. G

    ASP + AJAX + Rewriter

    Hello, I'm currently trying to use ajax for a partial page update. I use AjaxControlToolkit for that (asp:UpdatePanel). It works fine I use too the intelligencia url rewriter. It works fine too, no particular problem. The problem comes when both are used at the same time. In a page like...
  6. G

    Question [Answered] Execute Master Page before

    Hi, I've a master page (MainPage.master) and some content pages. In my MainPage.master.vb, I've some security verfications like access, connection, rights management, etc. And some others verifications in the contentPage.aspx.vb But I realized that the master page code-behind is executed after...
  7. G

    Question ASP Page life cycle (last event)

    Hello, After some readings, I'm not convinced. What is the last event throwed by an asp WebPage ? There is my problem: I have some <div> blocks and I hide them with javascript at the end of the page. I want to show only one block, depending on the "?do" param value. So I want to check the...
  8. G

    Question About masterPages

    Hello, I'm a beginner in ASP and VB and I would like to understand a thing. I'm used to develop respecting the MVC design-pattern and I'm wondering what should I put in the masterPage controller ? (myMasterPage.master.vb). I've already put all controllers in the associated aspx webform and I...
Back
Top