| WebForm_PostBackOptions Error |
|
 |
Index ‹ dotnet-framework-aspnet
|
- Previous
- 1
- client reponse ports for asp.netthe response is always on the same port as the request (actually same tcp/ip
connection).
-- bruce (sqlwork.com)
"Silvia Brunet JOnes" <Silvia Brunet email***@***.com> wrote
in message news:email***@***.com...
> does any one knows how to set the range of ports that are used to send the
response back to the client once the web server has processed it. I want to
sett the range of ports used to respond to the client.
> How do I do this.?
- 3
- Include Files DynamicallyHey there !
I made my own WebControl, that inherits from WebControls, and i added an
HtmlTable to it. I would like to include a file, dynamically, to one of its
cells... I've already searched, and found
HttpContext.Current.Server.Execute("mapage.aspx") but it executes the page
where i call it, and not in the cell... i also tried something like that :
MyTable.Rows(0).Cell(0).InnerHtml = Server.Execute("MaPage.aspx") but it
doesn't work... Could anybody help me ?
Merci d'avance :)
Ps : Scuse my english i'm french.
- 3
- How to get the exact page name from URLThere are a couple ways to pull this off, one being:
string s = System.IO.Path.GetFileName(Request.Path);
HTH,
On Tue, 6 Apr 2004 17:29:30 +0530, "Ashu Sharma"
<email***@***.com> wrote:
>Hi ..
>is there any inbuilt function present in ASP.NET which can help me in
>extracting page name from the url string..!!
>
>Please help
>Ashu
>
- 3
- Upload larger filesHi,
Can any one help me to solve this prblm.
When ever i upload files using default FILEBROWSER ctrl, small files
are uploaded w/o prbm. But larger files are not uploaded, instead the
"PAGE CANNOT BE FOUND" error is shown.
I used streams also, but experiencing same prbm.
plz. send a detailed reply.
-----------------------
Posted by a user from .NET 247 (http://www.dotnet247.com/)
<Id>RrPdXq5WHU+Cm6OuCu6qgw==</Id>
- 6
- How to pass a user defined type to a Webservice?I know the webservice can have methods that take (some) .NET types as
arguments, but is it possible to write a method that takes a user defnined
class as a parameter? If yes, can someone please show me an example?
Thanks in advance?
/Henke
- 7
- ASP.NET WebForms Evaluation> Just out of interest how many years commercial experience do you have
> (ie: building systems that can't go down for even 10 minutes and are
> used
> 24x7 by thousands of users and form the core of a business?)
well long enough to know the difference betweed an object oriented language
and a procedural language....
Please learn .net before you deside it's evil. Since I moved from Classic
ASP to .Net I've learned so much more....
- 9
- Running a Web Application local without a network !Hi,
I have a big web application that works on my web / application server
!
Now I want to instal it on a laptop which is not connected to the
network.
My web application works with a database server which I can simulate
with an access db !
Is there something else then IIS to do run my web app ?
Where can I found articles or tutorials on this ?
Is there a tip from Microsoft for this ?
Thank you,
Arkam
- 9
- Nested Repeaters Code PostHi All,
I found and used an example of a nested repeater I found in the group
but
1) converted it to asp.net vb
and
2) realised there was a small mistake in it, at least for my
implementation
I have posted the resulting code along with the original message in
case anyone needs it as a reference in the future.
Originally,
On Mon, Aug 11 2003 10:12pm Tony Wright (email***@***.com)
wrote
in microsoft.public.dotnet.csharp.general:
Newsgroups:
From: email***@***.com (Tony Wright) - Find messages by
this
author
Date: 11 Aug 2003 22:12:42 -0700
Local: Mon, Aug 11 2003 10:12 pm
Subject: Accessing a parent field from within a child repeater control
..
In a follow up post, the solution was posted:
To access a parent field from within a child repeater control using
in-line
code:
<%#
DataBinder.Eval(((System.Web.UI.WebControls.RepeaterItem)Container.Parent.Parent.Parent).DataItem,
"parent_field") %>
Container.Parent.Parent.Parent refers to the Parent Repeater, not the
Repeater Item that is currently active, thus "Parent_Field" fails
(assuming there is a column by name of "Parent_Field" in your dataset)
I used the following code, after converting it to VB
<%#DataBinder.Eval(CType((Container.Parent.Parent),
System.Web.UI.WebControls.RepeaterItem).DataItem,
"Parent_Column_Name")%>
- 10
- Databinding programmaticallyDatabinding programmatically
In my webform I have the code below in the form_load procedure.
On the webform I have a GridView control. My question is simply how to bind
the GridView to the datasource in the code programatically.
Dim cnn As OleDbConnection
Dim strConnection As String
strConnection = "Provider=sqloledb;Data Source=myServer;Initial
Catalog=Intranett;;Persist Security Info=True;User
ID=sa;Password=myPassword"
cnn = New OleDbConnection
cnn.ConnectionString = strConnection
Dim myDataSet As DataSet
myDataSet = New DataSet("Artikler")
Dim myDataAdapter As OleDbDataAdapter
myDataAdapter = New OleDbDataAdapter("", cnn)
Dim myCommand As OleDbCommand
myCommand = New OleDbCommand("Select * from Artikler")
myDataAdapter.SelectCommand = CommandObject
myDataAdapter.SelectCommand.Connection = cnn
myDataAdapter.Fill(myDataSet, "Artikler")
TIRislaa
- 14
- 16
- automatic email notification of online form submissionI have a database application that is submitted to an Access database. What
I want is when the form is submitted to automatically send an email to
multiple persons with the info from the form. This could be as an
attachement or plain text. I wouldn't care if it was like the mailto. I'm
clueless on how to do this.
Any help would be greatly appreciated.
- 16
- 16
- How to compile a Master page in a separate assembly?In ASP.NET 1.1, I had a class library with a bunch of base classes for all
my projects. One of the base class is a base page class. In .NET 2.0, how
can I compile a master page into a separate DLL? If I select class library
project type in VS 2005, it doesn't compile the code in the master page code
front file correctly. If I create a web project, it doesn't result in a
single DLL like before. How can I get around this issue?
The whole idea is to wrap the basic page layout in the base page (or master
page) in a compiled assembly, so the downstream projects can simply
reference the class without the ability to modify the page layout.
Thanks
Bob
- 16
- Console.write -> where Does it go?Hi all,
Where Can I see what is written by Console.write in my WebService?
I mean, I have a function in my WS that when there is an error, goes to
catch(Exception e ){ Console.write("Error in my functionA: "+e)}
so, is there any log to see this error?
thanks for all
Marcos
- 16
- Help! Can't create ASP.NET projectI finally ran the compiler, but still the same error when I try to run the
page. I'll keep working on it.
"dw" <email***@***.com> wrote in message
news:uSaR$VL$email***@***.com...
> Ken, when I run the command line compiler on the server at its command
> prompt, I get an error: "'vbc' is not recognized as an internal or
> external command, operable program or batch file."
>
> "Ken Cox [Microsoft MVP]" <email***@***.com> wrote in message
> news:ezesEVC$email***@***.com...
>> Yes, you can compile using the command line. It will be something like
>> this:
>>
>> vbc /t:library /r:System.dll,System.Data.dll,System.Web.dll
>> mycodebehind.vb
>>
>> You may need to add more references depending on what's in your code.
>>
>> Ken
>>
>> "dw" <email***@***.com> wrote in message
>> news:u0CxaC$%email***@***.com...
>>> Thank you, Juan and Ken. I'll delete the entire app from our server and
>>> re-create it to see if I'll have better luck. Is there a way to compile
>>> an ASP.NET app written in VB.NET from the command prompt? You think that
>>> might resolve this issue? Thanks -- and thank you for all the answers
>>> you've been patiently providing to me; it's much appreciated :)
>>>
>>
>
>
|
| Author |
Message |
Brad

|
Posted: 2005-12-21 5:08:37 |
Top |
dotnet-framework-aspnet, WebForm_PostBackOptions Error
Per one of Microsoft's conversion suggestions (MSDN step by step guide to
converting web projects) we have configured our test web servers to run
ASP.NET apps using 2.0.....but we are still developing the apps in VS2003/
ASP.Net 1.1.
Though I've found this isn't quite the "quick switch" one is lead to believe
I've managed to work through all issues...but one. The one problem is that
on clicking a post back button I'm getting the error:
"WebForm_PostBackOptions is undefined".
The button works, and I still get the postback, but I get the above error
before the postback.
After googling the problem I have checked a few things.
-- This is happening on multiple web servers so it's not an isolated machine
issue.
-- We are not using any type of http / html compression.
-- The webresource.axd file in the html source of one app scenario is as
follows (the app locaiton is under http://Staging/Parks)
<script
src="/Parks/WebResource.axd?d=_oXdTc3t5DrUiza5HLkqig2&t=632687833518115886"
type="text/javascript"></script>
-- This only seems to happen (so far) once per browser session for the web
app. The error does not reappear until I open a new browser session
(either that or my testing is not consistent).
-- This only happens on the web servers (W2k3 IIS6). If I map IIS on my
local box (also W2k3 IIS6) to use ASP.NET 2, I cannot duplicate the
problem.
Again this is a VS2003 .Net 1.1 application deployed to web servers mapped
to use 2.0
FYI - for those reading the other issue I found and worked around has to do
with 1.1 3rd party callback controls. I was getting event validation
errors and worked aorund this by using the new config setting <pages
enableEventValidation="false"/>
Brad
|
| |
|
| |
 |
v-yren

|
Posted: 2005-12-21 17:30:00 |
Top |
dotnet-framework-aspnet >> WebForm_PostBackOptions Error
Hi Brad,
Thanks for your posting!
After my research, I think this is caused by known issue for ASP.NET v2.0.
Below is work around:
- Always include the WebForms.js file. This is a big rendering change.
- Modify all of our controls that may need it so that they ask for the
WebForms.js file to be rendered during PreRender. This solves the problem
for our controls (with a smaller rendering change), does not include the
file when unnecessary (most of the time, some cases can't be predicted that
early) but third party controls would need to do the same.
If the problem still occurs, I suggest you send a simple project as zip
format to me. It'll help me to repro and do some feather research. Thanks
for your understanding! My alias is email***@***.com (remove
.online).
Regards,
Yuan Ren [MSFT]
Microsoft Online Support
|
| |
|
| |
 |
Brad

|
Posted: 2005-12-22 0:32:00 |
Top |
dotnet-framework-aspnet >> WebForm_PostBackOptions Error
Yuan -
If I may follow up:
(1) This is a VS2003 / ASP.NET 1.1 code I am deploying (server just runs it
as 2.0). The googling I've done on WebForms.JS all refer to code change I
would make in 2.0 for embeded resource. Can I change 1.1 code, and if so
what do I add/change in 1.1. code? Or am I out of luck until I upgrade the
app to 2.0?
(2) Why does this error occur on the server but not on my pc? Both are
win2k3, IIS6, have the same version of 1.1 and 2.0 frameworks installed (and
I don't have VS2005 installed). Should something like this not consistently
work, or fail, on any pc?
Brad
""Yuan Ren[MSFT]"" <email***@***.com> wrote in message
news:email***@***.com...
Hi Brad,
Thanks for your posting!
After my research, I think this is caused by known issue for ASP.NET v2.0.
Below is work around:
- Always include the WebForms.js file. This is a big rendering change.
- Modify all of our controls that may need it so that they ask for the
WebForms.js file to be rendered during PreRender. This solves the problem
for our controls (with a smaller rendering change), does not include the
file when unnecessary (most of the time, some cases can't be predicted that
early) but third party controls would need to do the same.
If the problem still occurs, I suggest you send a simple project as zip
format to me. It'll help me to repro and do some feather research. Thanks
for your understanding! My alias is email***@***.com (remove
online).
Regards,
Yuan Ren [MSFT]
Microsoft Online Support
|
| |
|
| |
 |
v-yren

|
Posted: 2005-12-26 21:46:00 |
Top |
dotnet-framework-aspnet >> WebForm_PostBackOptions Error
Hi Brad,
Thanks for your reply!
I'm sorry to a little confuse with your current issue. If your web
application runs under the ASP.NET 2.0 environment, the web site has been
upgraded from ASP.NET 1.1. Since you develop the project in ASP.NET 1.0,
the project remains be upgraded when it runs under the ASP.NET 2.0
environment.
>" The googling I've done on WebForms.JS all refer to code change I would
make in 2.0 for embeded resource."
As previous reply, you do not need make it to embedded resource, but
include the WebForms.js file to ASPX page.
>"Why does this error occur on the server but not on my pc? Both are
win2k3, IIS6, have the same version of 1.1 and 2.0 frameworks installed
(and I don't have VS2005 installed). Should something like this not
consistently work, or fail, on any pc?"
Is it always occurred on the server? Do you mean the problem occurred when
you using server machine to access locally, but it works fine when using
client pc to access?
Regards,
Yuan Ren [MSFT]
Microsoft Online Support
|
| |
|
| |
 |
UmljaA

|
Posted: 2006-1-10 9:06:00 |
Top |
dotnet-framework-aspnet >> WebForm_PostBackOptions Error
Yuan,
I have a similar error that arose only after converting a 1.1 application to
2.0.
> Always include the WebForms.js file
Can you be a bit more specific? What syntax, and what file?
I already have "using System.Web;" in my C# code behind file. Should that be
enough, given WebForms.js which is now a resource inside System.Web.dll? Do I
need something in the .aspx file? An additional Import statement?
Thanks for your help!
""Yuan Ren[MSFT]"" wrote:
> Hi Brad,
>
> Thanks for your posting!
>
> After my research, I think this is caused by known issue for ASP.NET v2.0.
> Below is work around:
> - Always include the WebForms.js file. This is a big rendering change.
> - Modify all of our controls that may need it so that they ask for the
> WebForms.js file to be rendered during PreRender. This solves the problem
> for our controls (with a smaller rendering change), does not include the
> file when unnecessary (most of the time, some cases can't be predicted that
> early) but third party controls would need to do the same.
>
> If the problem still occurs, I suggest you send a simple project as zip
> format to me. It'll help me to repro and do some feather research. Thanks
> for your understanding! My alias is email***@***.com (remove
> .online).
>
> Regards,
>
> Yuan Ren [MSFT]
> Microsoft Online Support
>
>
|
| |
|
| |
 |
| |
 |
Index ‹ dotnet-framework-aspnet |
- Next
- 1
- Access public property from my ascx control !Hi,
Dragging & Dropping my ascx control in my aspx page, I just wanna know how I
can access its properties when validating the form ?
The control is composed of 4 controls (2 txtbox and 2 dropdown : Address,
ZipCode, Country & City).
In fact, when, in my code, I try "this.MyControlId".... it does not exist.
Thks for help.
- 2
- Calling a Java Web Service From C#Our client has a web service that we need to call to return us information about their customers. We pass in state and customer account number and it returns customer information in XML as a string. Their web service is a web service written in Java and expects a soap packet with tags formatted like <soapenv:Envelope>. When I add a web reference in C# by pointing to their WSDL the web service call fails and when I add code to trap the soap packet and write it out to a file I see that the generated C# code is sending a soap packed with tags formatted like <soap:Envelope>. Is there any way to tell the web reference to send the soap in the Java format
Thanks
Bret
email***@***.com
- 3
- CustomErrors statusCode 500I have a customerrors section in web.config something like the following:
<customErrors mode="On" defaultRedirect="/errorPage/errorpage.aspx" >
<error statusCode="404" redirect="/errorPage/errorpage404.aspx" />
<error statusCode="500" redirect="/errorPage/errorpage500.aspx" />
</customErrors>
This works fine, but every exception in the app that isn't a 404 error gets
redirected to the statusCode 500 page which represents an Internal Server
Error. Is this standard?
Why doesn't the defaultRedirect page ever get redirected to?
I have a test page that throws an argumentException and I get redirected to
errorPage500.aspx. I want this type of exception to go to errorPage.aspx
which is the default.
Any help would be appreciated.
Thanks,
Jesse
- 4
- Server.HTMLEncodeHi,
The following is lifted straight from the MSDN help topic for
HttpServerUtility.HtmlEncode Method [C#]
---------------------------------------------------------------
The following example encodes a string for transmission by HTTP. It encodes
the string named TestString, which contains the text "This is a <Test
String>.", and copies it into the string named EncodedString as
"This+is+a+%3cTest+String%3e.".
[C#]
String TestString = "This is a <Test String>.";
StringWriter writer = new StringWriter();
Server.HtmlEncode(TestString, writer);
String EncodedString = writer.ToString();
---------------------------------------------------------------
However, when I run it, the value of EncodedString is "This is a <Test
String>." not "This+is+a+%3cTest+String%3e."
Am I missing something? Am I not using the correct encoding method?
Any assistance gratefully received.
Best,
Mark Rae
- 5
- IIS Authentication Issue Hi Everybody,
This one is a typical issue I am facing.
I have 4 different Web applications with Windows Integrated
Authentication . This works fine in local Intranet.
For Some business reasons these 4 applications have been exposed to
internet along with a 5th application which is redirecting to these apps as
per the user choice.
Now Here the problem starts.
The internet user needs to provide a valid NT user id and password
for accessing any of the 5 applications. So if a user has access to 3 of the
applications , he needs to enter is credential information 4 times which is
not acceptable.
I want a solution so that the users on Internet should enter the
credential information only once using a custom user screen or Windows pop-up
along with the condition that LAN users should be authenticated with Windows
Integrated Authentication system.
Please help me.
- 6
- 'Barclays ePDQ payment gateway'Can anyone explain me what is 'Barclays ePDQ payment gateway'
Is that 'Barclaycard Business' component that allows web credit card
processing?
Thank you,
Samuel Shulman
- 7
- how to save the XML file into the databaseDear ASP.NET Programmers,
I am saving the tables of a dataset into an XML file. I want to save the XML
file into the database, then retireve it as a dataset. I use the following
code:
ds.WriteXml("C:\Inetpub\wwwroot\database2\richtext\burak.xml")
where ds is my dataset.
When the page loads, I want that the contents of the XML file are loaded
into a dataset. I hope, that I could clearly explain what I want. Thanks in
advance,
Buran
- 8
- Safari Display ProblemMy asp.net-created page looks fine for most browsers, but on Safari the text
assigned to a label at the end of my file displays over the top of the
beginning text.
Any idea how I can fix this?
Thanks!
- 9
- ObjectDataSource ErrorI created a Dataset Type on one project which generates a DLL. I have a web
project . I created a webpage with a gridview. I attached an ObjectDatasource
to the Dataset type from my other project. I assigned the Insert, Update, and
select to the ObjectDataSource. I attached the gridview control to the
ObjectDataSource. I run it and edit a record in the grid. When I hit the
update, I get the following error:
-------------------------------------------------------------------------------
Object of type 'System.Int16' cannot be converted to type
'System.Nullable`1[System.Int32]&'.
[ArgumentException: Object of type 'System.Int16' cannot be converted to
type 'System.Nullable`1[System.Int32]&'.]
System.RuntimeType.CheckValue(Object value, Binder binder, CultureInfo
culture, BindingFlags invokeAttr) +843
System.Reflection.MethodBase.CheckArguments(Object[] parameters, Binder
binder, BindingFlags invokeAttr, CultureInfo culture, Signature sig) +199
System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags
invokeAttr, Binder binder, Object[] parameters, CultureInfo culture, Boolean
skipVisibilityChecks) +325
System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags
invokeAttr, Binder binder, Object[] parameters, CultureInfo culture) +29
System.Web.UI.WebControls.ObjectDataSourceView.InvokeMethod(ObjectDataSourceMethod method, Boolean disposeInstance, Object& instance) +482
System.Web.UI.WebControls.ObjectDataSourceView.InvokeMethod(ObjectDataSourceMethod method) +38
System.Web.UI.WebControls.ObjectDataSourceView.ExecuteUpdate(IDictionary
keys, IDictionary values, IDictionary oldValues) +2573
System.Web.UI.DataSourceView.Update(IDictionary keys, IDictionary values,
IDictionary oldValues, DataSourceViewOperationCallback callback) +78
System.Web.UI.WebControls.GridView.HandleUpdate(GridViewRow row, Int32
rowIndex, Boolean causesValidation) +1215
System.Web.UI.WebControls.GridView.HandleEvent(EventArgs e, Boolean
causesValidation, String validationGroup) +858
System.Web.UI.WebControls.GridView.OnBubbleEvent(Object source, EventArgs
e) +95
System.Web.UI.Control.RaiseBubbleEvent(Object source, EventArgs args) +35
System.Web.UI.WebControls.GridViewRow.OnBubbleEvent(Object source,
EventArgs e) +117
System.Web.UI.Control.RaiseBubbleEvent(Object source, EventArgs args) +35
System.Web.UI.WebControls.LinkButton.OnCommand(CommandEventArgs e) +115
System.Web.UI.WebControls.LinkButton.RaisePostBackEvent(String
eventArgument) +163
System.Web.UI.WebControls.LinkButton.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(String eventArgument) +7
System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler
sourceControl, String eventArgument) +11
System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) +174
System.Web.UI.Page.ProcessRequestMain(Boolean
includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +5102
--------------------------------------------------------------------------------
Now I checked the values in the DataSource_Updating event and the fields for
update are of the correct format. What is wrong here?
Also how can I debug my DataSetType Classes. I placed a breakpoint to the
Update Method of the Dataset.Designer.vb class file, but it never breaks. The
project is referenced in the Web Project. The Dataset Type DLL is also
compiled for DEBUG. So why is it not breaking?
- 10
- Advise on alachisoftI need a RAD tool to create data middletier (SQL Server) in order to build a
web interface
is alachisoft the product to use or which one????
Patrick
- 11
- Access user control from other user controlHello,
I have two UserControls on a aspx page. I need to read a property of the
first UserControl from within the second UserControl. The UserControls
only know about themselves, so I can't declare a variable of the other
usercontrol's type. So I can't do something like this in the second
UserControl:
FirstUserControl first =
(FirstUserControl)this.Parent.FindControl("FirstUserControl")
Additionally I don't like to use the FindControl method, because it
returns an Object.
What's the best way to get to a usercontrol's properties from within an
other user control?
Greetings,
Chris
*** Sent via Developersdex http://www.developersdex.com ***
- 12
- User Control Question: Button Onclick Event won't work (won't fire)I have a link (.ascx) and that generates an Add form on that page. The
autopostback dropdown is within a "If Not IsPostBack Then" statement.
The form that is created is all via static html in the user control.
The problem is, no matter what even when no data is filled out in the
form, the submit button just postsback the page and nothing happens. I
have 2 dummy links on the page right now, and the form is automatically
created without a link click for testing purposes. I thought that
onclick events work in a user control but maybe I'm wrong.
Oh, and stuff works in the .ascx, for instance response.write's appear
from the Page_Load, it's just this onclick event that won't work.
Here's the code:
Sub Page_Load(Sender As Object, E As EventArgs)
'Constants, link, local path, and sql connection.
strLink =
System.Configuration.ConfigurationSettings.AppSettings("LinkPath")
strPath =
System.Configuration.ConfigurationSettings.AppSettings("SitePath")
Conn = New
SqlConnection(System.Configuration.ConfigurationSettings.AppSettings("SQLConnect"))
strBaseQuery = "Select TableName from TableGenData where Display = 4
Order By TableName Asc;"
If Not IsPostBack Then
conn.open()
'Populates the dropdown with the Status Names.
cmdSelect = New SqlCommand(strBaseQuery, Conn)
dtrTableData = cmdSelect.ExecuteReader()
TableDropDown.DataSource = dtrTableData
TableDropDown.DataTextField = "TableName"
TableDropDown.DataValueField = "TableName"
TableDropDown.DataBind()
dtrTableData.Close
conn.close()
Dim li As ListItem
li = New ListItem("Select a Table", "0")
TableDropDown.Items.Insert(0, li)
End If
'The control is added here.
ctlControl = LoadControl( "AddDB.ascx" )
plhContent.Controls.Add( ctlControl )
'<ManageDB:AddDB ID="ctlAddDB" Runat="Server" />
End Sub
***********************
Here is the control:
'On button submit, grab the data from each form and submit it to SQL.
Sub SubmitForm_Click(s As Object, e as EventArgs)
Response.write( "omg it worked" )
End Sub
Now, of course there is a form below that has all the .text fields but
I'm hoping you can imagine those being there. The .ascx also contains
the <asp:Button OnClick=SubmitForm_Click runat=server /> as well. If
anything, I tried getting it to just error on me and nothing would
happen. I'm not sure if you would need more info, but if so I have
absolutely no problem providing it.
I looked around groups, and around forums for about an hour but I
couldn't find an answer. Maybe I'm just looking in the wrong places,
with the wrong search terms.
Thanks for the help in advance!
- 13
- 14
- Compilation IssueHi all,
I have compiled by .net web applicaion in my local machine ,
and a dll has been created on the bin Directory,
And i have copied the entire application using xcopy deployment to a
different server.
i have copied only the aspx file , the dll file as well as the config
files.
And iam able to browse the application .
Since we have a precompiled dll in the bin folder.
When i request this application will any sort of compilation takes
place?, even at any point of time?
Regards
thomson
- 15
- Using RAPI in ASP.NETHello
Is it possible to call RAPI functions to talk to a PocketPC from an
ASP.NET web application? If so how can this be achieved?
Thank you very much
Stephen van Rees
RMIT Univeristy
|
|
|