Vb.net - Include Dynamic Code Which Was Easy In Classic ASP
Jun 8, 2010
I've got an ASP.net file, and I'm trying to include dynamic code which was easy in classic ASP.
Here is what I have tried so far:
<%@ Register TagPrefix="TagPre" TagName="header" Src="alg/classes.aspx"%>
and
<!--#include file="alg/classes.aspx"-->
But neither of these seem to work. The content of classes.aspx is:
<script runat="server">
' Square class
Public Class square
Public sqRows As Integer 'Numbers of rows this square has
Public sqCols As Integer 'Number of columns this square has
Public sqArray(,) As Integer 'The square array
' Initialise square array to match size of canvas
Public Sub initSqArray(ByVal canvCols, ByVal canvRows)
ReDim sqArray(canvCols, canvRows)
sqRows = canvRows
sqCols = canvCols
End Sub
End Class
View 2 Replies
Similar Messages:
Jul 30, 2010
how I can include .inc file from VB classic ASP in C# aspx page?
I try do it with:
<!-- #include file="menu.inc" -->
But I receive error about syntax in menu.inc "Compiler Error Message: CS1003: Syntax error, '(' expected" - "Line 3: if Len(Session("GUID")) < 1 Then":
<%
if Len(Session("GUID")) < 1 Then
Response.Redirect "default.asp"
End If
%>
View 1 Replies
Jan 31, 2011
I would like to include the asp clasic file in asp.net page. I am looking for something similar to :
<!-- #include file="inc.config.asp" -->
View 6 Replies
Jan 18, 2010
ASP.NET 3.5, IIS7,In my Global.asax's Application_BeginRequest, I need to extract from the request's URL an entirely seperate URL that's been embedded in it without using query string.
The solution I came up with was to hex-encode the entire target URL as if it were a directory, as follows:
http://localhost/687474703A...etc...732E6D7033/irrelevantFilename.txt
This fails for IIS7, whose ASP.NET implementation won't tolerate a URL path greater than 260 characters.My code controls how the request URL gets generated, and how it might embed the target URL in there, but it doesn't have any control over that target URL value (they're third-party URLs).How better could I embed this target URL in my request URL?
View 1 Replies
May 21, 2010
can I include normal asp.net pages (webforms or mvc) in a Dynamic Data web application?
View 2 Replies
Mar 16, 2011
we are creating a custom content management and out portal page is bit bulky it is about 60Kb without images.
and during loading the page in some browser we can see some parts of site load faster than the other parts of the site where as we want to indicate (or instruct the web server) to load some of the areas first then load rest of the page.
is there any particular setting in IIS for is there any particular method in classic asp for doing that?
also I have the same question in asp.net.
View 1 Replies
Oct 20, 2010
I want to be able to load a customized log in page depending on a couple of parameters passed into the querystring.Each customized login page needs to be able to dynamically display log in errors and possibly have other variables passed in.
Let's say the dynamic login page looks like this (over-simplification here):
<form>
<% if (has_errors) { Response.Write(error_msg); } %>
<input type="text" name="email">
</form>
If the aspx page loads the file like this:
Response.writefile("path/to/custom/page");
the code shows up in the output and doesn't get processed. I have tried other ways to load the file contents (something similar to classic ASP includes) but get the same results every time.I could have all the custom pages set up as user controls, but I need 100% control over the css, js, and html - and the documentation I read here indicates that I won't have that level of granularity.link textPLUS - I'm stuck in a .net 2.0 environment - so .NET MVC is not available to me
View 1 Replies
Jul 30, 2010
this is my tipical page
as you can see, i have a connection property and a function who return if the program can connects to DB with any error
[Code]....
i want optimize my codei discovered that i must use connect() function in every page,i am thinking to creare a class who have connection property and connect() method and derive my page to it, is it a good idea?
View 7 Replies
Jun 10, 2010
I have a GridView with EDIT, DELETE AND SELECT options.Now I want to include AJAX code so that on pressing DELETE or EDIT it gives me a pop-up box, confirming my action.
View 8 Replies
Mar 14, 2011
I'm using CRv9 and want to make use of Google Charts API for generating QR code on fly (in asp .net) and display it in the Crystal Report in a PDF format.I have spent the whole day looking for solution with no luck. The way we output the report is we use .rpt file, feed it with data and use Response.OutputStream to feed to browser. No CrystalReportViewer control hence CSS solution is not an option.
Now, I got as far as added an OLE Object from file with Link, which I would be overwriting every time the new QR code is generated. I apreciate that CR requires it to be a bitmap, so I was planning to download and convert the google's generated PNG file to BMP, that's not an issue. The problem is that Image in the report does not update after I replace the file. Meaning, it displays the original image, which was added as an OLE Object.
If I open this report in CR designer, the image gets refresh/updated and I'd have to save changes to the report to see this new image next time I generate a PDF file.The question is really how to achieve a dynamic image in Crystal Reports 9? Remember, Picture object did not have a Graphic Location property until vXI, so I cannot use that.
Manipulations with DataSets is not an option either as we're not giving report a datasource, instead we just map the fields with FormulaFieldDefinitions.
sample qr code url: https://chart.googleapis.com/chart?chs=150x150&cht=qr&chl=Hello%20world&choe=UTF-8
View 3 Replies
May 20, 2013
I have just started with ASP.NET.
I like the idea of using Include files so that I can create various versions of individual parts of a site and decide in code which to display. I used:
<%Response.WriteFile("contentcontent.aspx")%>
to include a content.aspx file within my default.aspx page.
I would like to include a Left.aspx, Main.aspx and Right.aspx file inside the content.aspx file. I tried using the reponse.writefile function but noticed when I debug the website that the text "reponse.writefile..." displays instead of the code contained within the referenced file(s).
Can this not be done?
View 6 Replies
Feb 22, 2010
We are in the process of implementing a CMS for our project which currently extensively uses asp.net master pages and css. Also the application is data-driven and controls like gridview and listview are used. After a little search we zeroed on two CMS dotnetnuke and umbraco. Now my question is:
Which one of the two CMS is best suited and easy to use?
Do they support integration of existing code and UI's
provide links for further reference.
View 5 Replies
Dec 7, 2010
-store in database table just the url to the image file located on file system of web server(ex:"C:image.jpg")?
-store them in database table as type "image"?
-store them in database table as filestream data?
View 3 Replies
May 14, 2010
to call some piece of c# code via a trigger in sql, and if it is what's the easiest method to go about doing it.
View 3 Replies
Dec 6, 2010
is there any easy way to show images in asp.net page from a ftp server?
View 1 Replies
Feb 22, 2010
This seems like it should be easy..... I am pulling some results from a database and then comparing them to a checkboxlist ... if a checkbox item within a list of checkboxes is within this result list, then I want to check that box...this is an 'easy' version of what I am trying to do...
[Code]....
View 1 Replies
Feb 17, 2010
Here we have a function The 'ConfirmDelete()' which is executed each time a click event occurs on the page.
2. Then we use a logic that to find which element was clicked on i.s we append a word 'DELETE' to the ID of the control.
3.And finally check if the clicked element having ID is 'DELETED' , then the javascript function will be execute to ask the user about his/her confirmation.
JavaScript code:
[code]....
View 2 Replies
Oct 1, 2010
Anybody know of any easy way to generate random distinct colors (preferably the same random each time). I am trying to create a MS Chart stack graph, and each series is based off of a service order type, but that list can grow, so I'm creating my series in a loop based off a distinct query and want to assign a color to them dynamically at run time. It would be nice though if they didn't change every run.
View 3 Replies
Apr 27, 2010
I'm trying to use ADO .NET to select data from this table in excel. I'm not sure at this point if I need to modify the table to make it more easy to select data from it. Here's what the excel table looks like
I guess I don't know where to really start. I'm pretty much trying to grab the numbers in the middle(design pressure) based on Mull length in inches and opening width. so the user will input the height and width of window. then if it's going into concrete or wood.. if it;s wood then in the clip to opening row if he uses (2)A or 3(b) he will have a DEsign pressure of 170 if mull length is 42 and opening width is 70. in the same 70 column if he uses (3)a 0r 3(b) his DP will be also 170 in this case.. So I will have a user interface and ask the user for a width of window and height of window which will be the Mull Length and what substrate(wood or concrete) based on that I want to display if u use this amount of screws A or B u will get this DP.
View 2 Replies
Jun 3, 2010
I installed Visual Web Developer 2010 on a machine that already had SQL Server 2008 Professional on it. Now that machine is running both SQL 2008 Professional and SQL 2008 Express instances.
Is there an easy way to uninstall the Express instance?
View 3 Replies
Sep 14, 2010
am looking for the best approach to using NHibernate and MVC.net. I have gone through http://www.codeproject.com/KB/architecture/NHibernateArchitecture.aspxSomeone has pointed to the use of Castle project Active record. My aim is to eliminate the need for any nhibernate dependencies within my domain. I want a quick and easy domain model that is persistable with NHibernate.
View 2 Replies
Aug 22, 2010
The project, once done, will provide a "portal" into a limited portion of the client's database. All clients are using a SQL database, but various server software products are involved (MSSQL, MySQL, and others).
My question, however, has more to do with the "look and feel" of the finished product. We want to be able to integrate our 'portal' easily into the client's websites and have it look as seamless as possible. Obviously, placements of logos, etc. -- but also colors, fonts, etc.
Client sites tend to be simplistic in design. We envision the customer placing a link to our site from theirs, and our site will be running on IIS on their server. At least that's the plan.
The goal right now would be to make as much of this "parameter driven" as possible, so that a lot of the install can be accomplished through some simple settings, isolated in one or two files such that at installation time we can tweak those settings and be up-and-running in a short period of time with a site that integrates reasonably well with the customer's.
But I'm uncertain as to whether there is a better approach. Obviously, we could try to redesign our site with each install with the basic design of the customer's, but this would be cost-prohibitive in some situations. So, I'm thinking about a "second best" alternative that may be adequate in most circumstances.
View 1 Replies
Mar 3, 2011
I have urls like this in my application: [URL]
Iphone, Ericsson, LG, HTCDesire are simple products and that is fine. It is the tabid/61/Default.aspx
I'd like to get rid of so that urls would look like these instead: [URL]
what kind of coding needs to be done here because I have a .Net open source CRMsystem that is native with these tabid/61/Default.asp but I'd like to override it with added VB.net code
View 2 Replies
Oct 1, 2010
I have a about 6 or 7 text boxes which needs to be validated to make sure they are not empty from server side code. So how I usually do this is, check each textbox 1 by 1 to ensure that they are not empty. Are there any other efficient methods to do this? I have searched on SO and have found out that adding all the textboxes to a list and using a for each is a much better method. Are there any other ways that this can be achieved? Thanx a lot in advance :)
View 2 Replies
Jul 15, 2010
We currently allow users to store HTML in the database. Would like to allow them to add scriptlets to their HTML email templates that would be executed at run time. Example:
[Code]....
What I want to have happen is to have the scriptlet execute before being rendered to the output stream.I found an article from Rick Strahl that is about 8 years old:
http://www.west-wind.com/presentations/dynamicCode/DynamicCode.htm. It looks like the code at the very bottom is exactly what I want, but when I tried it in my .Net 4 app, it didn't work. I get the error:
2 Errors:Line: 0 - Metadata file 'RemoteLoader.dll' could not be found
Line: 0 - Metadata file 'wwScripting.dll' could not be found
I presume this is from the Generated source code. Not sure how I tell the Generated source code where those 2 DLLs are.
Is there a different/better way of doing this these days?
View 6 Replies