What kind of image is this, elaborate your question.
Shivanandan C V
What kind of image is this, elaborate your question.
Shivanandan C V
Hello friends, I have created a report which uses CSS to set back-ground image a text box. When I run the report using ASP.NET CrystalReportViewer, the CSS formatting was applied but when I tried to print the report, the CSS formatting was not applied. I am using Crystal Report for Visual Studio .NET 2005. Please help me in solving this issue.
Shivanandan C V
Hello friends I have created an activex dll object and it works fine when registered manually. I want that activex to install in client browser, if already not. I got from searching that, that can be achieved by creating CAB file. I have created the CAB file and set it the codebase property of the activex object It asks for downloading, but not getting installed on client browser. Any one please lead me to the correct way of building the CAB file or where ever the mistake is. Please ...
Shivanandan C V
Thanks for you reply. Is there any event in which, the typed value on the textbox is accessible? So that I can update the data table from that. Then on rebinding I will get the last typed value again. Thanks
Shivanandan C V
Hey Nobody is there to help me? Please give any suggetions atleast. Thanks
Shivanandan C V
Hi friends I have created a gridview using ITemplate to generate textboxes in cells and to display the data. The grid is bound using a datatable in PreRender event. On Page refresh the modified value gets replaced by the existing value from datatable. If I do not bind the gridview in each refresh, the textboxes gets vanish from the gridview. Can any one help me to overcome this problem. Does viewstate will have any role in this? Thanks in advance
Shivanandan C V
Hi friends, I am new to silverlight. I have created a silverlight combo with options 'Male' and 'Female', and included it in an aspx page. Now I want to know, how to retrieve the selected value and selected text in aspx code. Please help me.
Shivanandan C V
Thanks for the response. But it is opening the files in the browser window itself. e.g., if I click on .doc file link, it should launch MS-Word and the file is to be opened in that application[assumed that MS-Office is already installed]. The same case is with MS-Excel, PDF[PDF reader installed] etc.
Shivanandan C V
Dear All, I have an aspx page which contains link to different files created in different application such as .PDF, .doc, .txt, .xls etc. My requirement is to open each type of files in their respective application window. I tried System.Diagnostics.Process.Start method, but it does not works in client browser. Please help, if any one knows how to handle it.
Shivanandan C V
Hai friends I want to run word application from my aspx page. The scenario is given below. When I click a command button from aspx page, It opens word application, I will type the contents and on clicking the save button, it gets saved in to predefined file, and word application should close. Every thing works except closing of word application. The event available is "DocumentBeforeSave" and I put all the code to save it to a predefined file in this event. So my question is that, is there any event which works after save ( for closing word application ) Thanks
Shivanandan C V
I want the node of the tree to show the Subject, User name, date etc. Is it possible to display more than one data in one node, also the node should expand, show its remarks when clicked on it. Please help me
Shivanandan C V
Dear all Please suggest me on what control is used to display the message boards messages and its replies like a tree structure.
Shivanandan C V
Thank you very much for helping me...
Shivanandan C V
modified on Wednesday, June 10, 2009 4:17 AM
If I don't declare it as Static, then its value is retained only in the function in which it is assigned. In other function its value becomes 0. Please check my code without Static identifier.
Shivanandan C V
Hai Friends I have declared a variable outside all the function in an aspx.cs page, like
public partial class StaticVar : System.Web.UI.Page
{
static int a;
protected void Page\_Load(object sender, EventArgs e)
{
Response.Write(a.ToString());
}
protected void Button1\_Click(object sender, EventArgs e)
{
a = 50;
Response.Write("set 50, a= " + a.ToString());
}
protected void Button2\_Click(object sender, EventArgs e)
{
a = 60;
Response.Write("set 60, a= " + a.ToString());
}
protected void Button3\_Click(object sender, EventArgs e)
{
Response.Write("a= " + a.ToString());
}
}
The problem is that when more than one user access this page and modifies the variable a, all the users gets the new value for a, i.e., they loose the value what they had set for a. They get the value that is been set by the last user. If I remove 'Static' from its declaration, then its value is not available to other functions. How to solve this problem. Please help me.
Shivanandan C V
Thank You
Shivanandan C V
Hosting people told that they have set it to 60 minutes. About recycling I have no idea.
Shivanandan C V
Hi, After deploying also , I get the same kind of error.But now I have uploaded all files ie, aspx,aspx.cs,cs,web.config,Global.asax etc. The first variable is added in Session_Start event, as Session.Add("CompanyTitle","XYZ") The other variable in protected void btnLogin_Click(object sender, EventArgs e) { // value retrieval code from Database Session["UserName"]=UserName; } The problem is that whenever I retrieve the session variable "UserName" in some other page, nearly after 1 minute it gives the error "Object variable not set to an instance..." Shivanandan C V
Dear friends, My ASP.Net site works perfectly in local network. But after uploading in the net, session times out frequently. I have 2 session variable.One is declared ( CompanyTitle) at Global.asax(Session_Start event), another in login page ( userName). The session variable declared in Global.asax is available in all pages, the other variable is not. It gives an error as "Object variable is not set to an instance.....". After that I declared this variable in Global.asax(Session_Start event) with "" as its default value. Now the problem is that the UserName session variable is reset into "" frequently. my session entry in web.config is as <sessionstate mode="InProc" cookieless="UseCookies" timeout="60" /> Please advice me on this problem.
Shivanandan C V
modified on Monday, April 13, 2009 1:32 AM
I have used SQL Server Reporting Service. In that I kept a table and on that, added fields from dataset which includes a datetime field also. This report is bound to a ReportViewer Control in the aspx page. In this aspx page, I have set the culture. While displaying Date on this page, it displays based on the culture I have set, but the report displays date in local system settings.
Shivanandan C V