Web Forms :: Started Process Not Executing Any Code When Run Through IIS?
Aug 23, 2010I am calling a simple console application (exe) using process.start. Within this application, I am writing events to the event log.
View 6 RepliesI am calling a simple console application (exe) using process.start. Within this application, I am writing events to the event log.
View 6 RepliesHow can I tell when the ASP.NET worker process last restarted?In ASP.NET, how can I tell when the app domain last recycled?
View 1 RepliesDear ladies and sirs.
I have a .NET infra code running both within the IIS worker process and within a desktop client app. How can the .NET code determine whether it is running within an IIS worker process?
I know that I could check the name of the process (w3wp.exe, for instance), but I would like a more robust approach. I wish to make a side note. This is not a production need. I need this information to enable certain scenarios useful during the development and testing phase. Specifically to ease the testing of secure vs non secure configurations.
[Code]....
I then decided to run the whole thing on the server it uses the same code above but I now have several parameters to pass in and call a slightly different stored procedure
DataSet dsEx = new DataSet();
SqlCommand testcommand = new SqlCommand();
testcommand.CommandText = "spLockUnlock";
testcommand.CommandType = CommandType.StoredProcedure;
testcommand.Connection = sqlLockUnConn;
testcommand.Connection.Open();
testcommand.Parameters.Add("@OffState", SqlDbType.Varchar);
testcommand.Parameters["@OffState"].Value = ViewState["OffState"].ToString();
testcommand.Parameters.Add("User",SqlDbType.Int);
testcommand.Parameters["@User"].Value = lblUserID.Text;
testcommand.ExecuteNonQuery();
testcommand.Connection.Close();
rest of the code follows
The stored procedure uses the parameters to lock certain records, then I use exec spOfflineSystem which executes a series of select statements (as above), then I unlock the records afterwards....no problems however my dialog box on the front now reads
CustomersEC45TG.xml
If you step through the code the filename reads Customers.xml yet on the front end we get the spurious characters....each time this is executed the spurious characters are different. Only every now and then will the correct filename dialog box show.
Using Javascript i am validating a textbox data.when validation fails i need to stop executing code behind file.How to proceed.
View 3 RepliesI have a Global.Asax and Global.Asax.cs file that is specific to my particular Asp.net project. For some unknown reason the code in my Global.asax.cs file is not being executed. I thought that the breakpoints were being ignored, however that is not the case. Because if I try to deliberately force an error to occur, the code is never executed. Below is an example of what I am talking about. The real code in my Application_Start method is not shown below. ANd other methods are not shown as well.
I have tried renaming the Global.asax file and then re-creating it, and that did not work either. Strange because when I try and create a new Global.asax file, the option to create a code behind file is greyed out.
Why isn't my Global.Asax.cs code being executed?
private void Application_Start(object sender, EventArgs e)
{
int x = 1;
int y = 1;
int z=1/(x-y)
}
We have a web service running live. Last week, we pulled the source code down to my machine and successfully built it.
My goal is to become familiar with this code and document it. My problem is that I am not sure how to get it running locally.
First of all, I have to configure it in IIS or something? How do I do that, and is that indeed the right place to begin? I tried creating a consumer in a separate VS solution, and when I said browse for local web services it said "Active Directory Services cannot find the web server."
I tried this link, but got lost when it said "3.Under Visual Studio installed templates, click ASP.NET Web Service." because I don't have that template.
I have a vb.net codebehind function 'ExtractFile' which i need to prompt for confirmation before executing the rest of my code.I dont know the best way to do this
View 3 RepliesI have a user control with a dozen radion buttons in it.Every pair of radio buttons execute a Sub on server side.All of the radio buttons have the autopostback set to true.There is a public Sub of the usercontrol that gets called only once by the page and loads the data setting the radio buttons to checked or not checked.The problem is, that once a radio button is set, it will execute it's server side code on every postback even if the postback is caused by another control on the usercontrol or even another control on the page. So if all the radiobutton pairs are set and a postback is caused, there will be six server side Sub executing! Casting the sender in each of those Subs gives back the radiobutton that is checked at that point, so it's if on every postback the event is fired for each checked radiobutton.
View 2 RepliesI have buttion on web page and client side java script ConfirmResetPassword() for confirmation message which return true or false
[Code]....
if (confirm("Are you sure you want to reset password of this user?")) {
return true;
}
return false;
}
}with Telerik AjaxSetting[Code]....
<input type="button" name="ctl00$ContentPlaceHolder1$btnResetPassword" value="Reset Password" onclick="javascript:return ConfirmResetPassword();__doPostBack('ctl00$ContentPlaceHolder1$btnResetPassword','')" id="ctl00_ContentPlaceHolder1_btnResetPassword"
/> ?
I just finished building a new version of a web app that imports custom-formatted documents. However, now I just found out that I need this web app to also import custom documents from 3 years ago. I have the code from 3 years ago that imports the older docs...
I was wondering if I could put some type of "if then" statement in my code like " If oldVersionofDoc Then...execute the old code located in this .vb file".
I want to execute a CS Code but before that, i want a confirmation from user, it will be a javascript confirmation box, if the user say yes, then execute the code, or else leave cs code don't execute
below is my button code
<asp:Button runat="server" ID="EmptyButton" OnClick="EmptyButton_Click" OnClientClick="EmptyMyCart()" />
I'm using the following code in an attempt to show a dialog with a list of errors on the client:
if (rollout.ImportErrors.Count > 0)
{
ClientScript.RegisterClientScriptBlock(GetType(), "showErrors", "showErrors();", true);
}
The error count is non-zero and the following script block is emitted, but the script isn't executing.
<script type="text/javascript">
//<![CDATA[
$("#error-report").dialog("open")//]]>
</script>
If I call the function directly from a Firebug console window, the dialog shows properly, so I know the dialog and my code are working. BTW, this code is in a content page, using a content placeholder that 'injects' code into the element of the rendered page.
deleted old code
View 3 RepliesI wrote a code to call some event...
[Code]....
and
[Code]....
js calls this code and I get object reference not set to an instance of an object
Here is what I need to do: I need to execute some server side code after a user clicks on a button, THEN I need to execute some client side code. OnClientClick gets invoked BEFORE the onClick; and what I need is the opposite.
Is there a way to do this? It looks like I will have to execute JS code from the server code.
I am logged in as the administrator when I installed an application named pdflatex.exe on my server. This application works as a converter from LaTeX input file to Pdf file. I host an Asp.net MVC 3 application running under an Application Pool Identity with Load User Profile = True. The Asp.net MVC 3 code contains a code that executes pdflatex.exe using System.Diagnostic.Process instance as follows:
Process p = new Process();
p.EnableRaisingEvents = true;
p.Exited += new EventHandler(p_Exited);
p.StartInfo.Arguments = "-interaction=nonstopmode " + inputpath;
p.StartInfo.WorkingDirectory = @"c:mydomain.comworking";
p.StartInfo.UseShellExecute = false;
p.StartInfo.FileName = "pdflatex.exe";
p.Start();
p.WaitForExit();
From the scenario above, the web application runs under a restricted acount but it executes an external application under a default account that I don't know. Can an application running under a less privileged account start a process executing another application under an administrative account?
in my controller I have code that validates URL. if not valid I want it to 301 redirect:
[code]....
but this still goes continues on and executes any code after. how would i simply 301 redirect? and NOT continue to process any code after break;?
It is possible to execute code behind in parent just after closing ModalPopupExtender ?
View 2 RepliesI have a web project that sends out a customized email after certain user events (like a status change). I also have an SSIS package on the database that pulls in data from one database and updates another database with that data. I want to be able to compare the data and if a particular field's data for that record is different between the two databases is different, I want to be able to use the dll I created for the web app to send the appropriate email.
View 2 RepliesI am beginner to .Net development, so i am looking for a favour.
Question 1 :
protected void Page_Load(object sender, EventArgs e)
{
txtUserName.Text = "Focus";
txtUserName.Focus();
}
I am unable to get focus to my textbox
Question 2 :
I made javascript code for client side validation.
function loginjs()
{
if(document.getElementById('txtUserName').value.length==0)
alert("UserName cannot be blank");
else if(document.getElementById('txtPassword').value.length==0)
alert("Password cannot be blank");
}
this code executes but it is not stopping further code execution. I mean it is only alerts but in addition to that i need to stop further execution.
I can't find the namespace where it's stored - in the view code I can execute Html.TextBox(<name>, <contents>, <html attribs>) and Html.DropDownList(<name>, <select list contents>, <html attribs>) but how do I execute these methods in controller code?
In case you are wondering why on earth I want to do this, rather than using the TextBox object, I execute Html.TextBox(....).ToString() and create html code from these objects.
I hav button on a page. click on it and it works on local system. when i deploy on server. code seems not working. I receive a 'request failed' and truest level error. method even contains 1 simple stmt of 'exit sub'. it's not happening on other pages.
View 3 RepliesI am using following server side code to save the data from ASP.NET Control toolkit Editor to the database It follows with the HTML Code The problem is that, data is saved successfully. But it is saved twice. Main problem is this server side event is fired twice. How can i prevent it from firing twice?
Server side code
Imports System.Data.SqlClient
Partial Class Administrator_Calendar
Inherits System.Web.UI.Page
Protected Sub BtnAdd_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles BtnAdd.Click
Try
Dim dbobj As New db
Dim i As Integer = 0
Dim rdr As SqlDataReader = dbobj.selectQuery("select max(srno) from calendar")
If rdr.HasRows = True Then
rdr.Read()
i = rdr.Item(0)
End If
rdr.Close()
dbobj.insertQuery("insert into calendar values (" & i + 1 & " , '" & Me.Txt_dt.Text & "' , '" & Me.Editor1.Content & "')")
dbobj = Nothing
Catch ex As Exception
End Try
End Sub
End Class
HTML CODE
<%@ Page Language="VB" MasterPageFile="~/MasterPages/Admin_AftrLogin.master" AutoEventWireup="false"
CodeFile="Calendar.aspx.vb" Inherits="Administrator_Calendar" Title="Excel Crop Care Ltd. / Administration Section / Manage Calendar..." %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit.HTMLEditor"
TagPrefix="cc2" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc1" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="Server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder2" runat="Server">
<div>
<cc1:TabContainer ID="TabContainer1" runat="server" ActiveTabIndex="0">
<cc1:TabPanel runat="server" HeaderText="Selected Dates" ID="TabPanel1">
<ContentTemplate>
<asp:GridView ID="Gridview1" runat="server" AutoGenerateColumns="False" DataKeyNames="srno"
DataSourceID="SqlDataSource1">
<Columns>
<asp:CommandField ShowDeleteButton="True" ShowEditButton="True" ShowInsertButton="True">
<ItemStyle Width="20%" />
</asp:CommandField>
<asp:BoundField DataField="srno" HeaderText="No." ReadOnly="True" SortExpression="srno">
<ItemStyle Width="10%" />
</asp:BoundField>
<asp:BoundField DataField="date" HeaderText="Date" SortExpression="date">
<ItemStyle Width="30%" />
</asp:BoundField>
<asp:BoundField DataField="description" HeaderText="Description" SortExpression="description" />
</Columns>
</asp:GridView>
<asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:DataConnectionString %>"
SelectCommand="SELECT * FROM [calendar]" UpdateCommand="Update calendar set date=@date,description=@description where srno=@srno"
DeleteCommand="Delete from calendar where srno=@srno"></asp:SqlDataSource>
</ContentTemplate>
</cc1:TabPanel>
<cc1:TabPanel ID="TabPanel2" runat="server" HeaderText="Add New">
<ContentTemplate>
<table>
<tr>
<td width="30%">
Date :
</td>
<td>
<asp:TextBox ID="Txt_dt" runat="server" Height="16px" Width="170px" CausesValidation="True"
Font-Names="Verdana" ForeColor="#666666"></asp:TextBox>
<asp:ImageButton runat="Server" ID="Image1" ImageUrl="../Images/Calendar_scheduleHS.png"
AlternateText="Click to show calendar" /><br />
<cc1:CalendarExtender ID="Txt_dt_CalendarExtender" runat="server" DaysModeTitleFormat="dd/MM/yy"
Enabled="True" Format="dd/MM/yy" TargetControlID="Txt_dt" PopupButtonID="Image1">
</cc1:CalendarExtender>
<cc1:TextBoxWatermarkExtender ID="Txt_dt_TextBoxWatermarkExtender" runat="server"
Enabled="True" TargetControlID="Txt_dt" WatermarkText="DD/MM/YY">
</cc1:TextBoxWatermarkExtender>
<cc1:MaskedEditExtender ID="Txt_dt_MaskedEditExtender" runat="server" MaskType="Date"
CultureDateFormat="dd/MM/yy" Enabled="True" TargetControlID="Txt_dt" Century="2000"
UserDateFormat="DayMonthYear" Mask="99/99/99">
</cc1:MaskedEditExtender>
</td>
</tr>
<tr>
<td colspan="2">
<asp:Label ID="Lbl_msg" runat="server" Text="Enter description in the editor below :"></asp:Label>
</td>
</tr>
<tr>
<td colspan="2">
<cc2:Editor ID="Editor1" runat="server" Height="350px" />
</td>
</tr>
<tr>
<td colspan="2" align="center">
<asp:Button ID="BtnAdd" runat="server" Text="Add" OnClick="BtnAdd_Click" Width="75px"
CssClass="btn" />
<asp:Button ID="Btn_Rem" runat="server" Text="Remove" OnClick="BtnAdd_Click" Width="75px"
CssClass="btn" />
</td>
</tr>
</table>
</ContentTemplate>
</cc1:TabPanel>
</cc1:TabContainer>
</div>
</asp:Content>
In a button click, I need to be able to hide my ModalPanel and then continue running other code server-side. I currently have it this way:
[Code]....
It hides the panel at the of the event handler because that's when the page posts back. So what can I do to hide the panel and then continue running the rest of the server-side code?
Basically what I'm trying to do is the following:
1. Button_display in my webform simply displays my UpdatePanel via ModalPopupExtender.
2. Button_closePanel_Click will hide my UpdatePanel and then run some server-side code, which would display my UpdateProgress control.
protected void Button_closePanel_Click(object sender, EventArgs e)