|
We dont even know what kinda application that you have developed and how you wanna integrate. so, we are not sure how we are gonna help you..
so, better if you can give us more details about your applications and how you wanna integrate.
|
|
|
|
|
please give the code how to display past 3 months dates in .net 2005 not in php related code....
i need when i clicking one particular date it has to show in that particular date of content...
like Archives...
|
|
|
|
|
The DateTime class has the AddDays and DaysInMonth method. There is also a calendar control built into the framework ( but not a very good one ).
Christian Graus - Microsoft MVP - C++
Metal Musings - Rex and my new metal blog
"I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
|
|
|
|
|
please giveme clrear idea about my question
|
|
|
|
|
i have a problem...i have to execute a URL without going to that page and have to access the session variables of the URL.......
tilak
|
|
|
|
|
I guess this is simple and straight question.
IIS integrated windows authentication doesn't accept my userid and password.
I am using the same userid and password that i use to log into my computer. but iis is not accepting it. Anonymous authentication is unchecked
This is a windows XP proffessional not connected to any server
should i be incuding my computer name also in the userID ??
Any help is appreciated,
yojimbo
|
|
|
|
|
Yes, when ever you pass in a username and password you need to include the domain name or if it is a local User the Machinename with your user name.
Ben
|
|
|
|
|
Hi,i had been working on a gridview which has textbox and button controls in the itemtemplate fields and few bound fields.my question is that i need to validate the number entered manually in the textbox is a valid entry or not on the button click attribute of the gridview row.if valid i need to update the data entered in the textbox with the existing value in the database......i wrote a javascript to validate tht the entry is valid,but this checks only for the first row of gridview and fails for all other rows........here is my javascript.....
function fn_check(which)
{
var element_length = which.length;
alert(which.gv1$ctl02$TextBox5.name);
for (i=0;i<element_length;i++)
="" {
="" var="" tempobj3="which.elements[i];
" if="" (right(tempobj3.name,8)="=" "textbox5"="" )
="" if((tempobj3.value.length="=" 11)="" )="" {="" make="" sure="" it's="" a="" valid="" length
="" segments="tempobj3.value.split("-")
" ((segments.length="=" 3))="" ((segments[0].length="=" 3)="" &&="" (segments[1].length="=" 2)="" (segments[2].length="=" 4))="" for="" (var="" i="0;" <="" 3;="" i++)="" (isnan(segments[i]))="" check="" to="" see="" the="" number="" is="" number
="" alert("ssn="" has="" be="" numbers="" separated="" by="" '-'="" character");
="" return="" false;
="" }="" }
="" true;
="" else
="" needs="" in="" format="" xxx-xx-xxxx");
="" else="" have="" length="" of="" 11="" (xxx-xx-xxxx).");
="" true;
}
to="" my="" knowledge="" what="" noticed="" that="" textbox="" name="" and="" id="" are="" varying="" dynamically="" they="" r="" not="" constant="" so="" we="" can="" call="" them.......it="" something="" like="" this......gv1$ctl02$textbox5.......and="" value="" tht="" constantly="" changing="" ctl102...ctl103....ctl104.....for="" corresponding="" values="" textboxs="" present="" different="" rows="" gridview...
="" foreach="" (gridviewrow="" grow="" gv1.rows)
="" txt1="new" textbox();
="" how="" declared="" control="" access="" code="" behind......
so="" there="" way="" which="" validate="" it="" then="" update="" with="" new="" database......any="" help="" would="" greatly="" appreciated.....
thanks="" advance......
sri=""
<div="" class="ForumSig">hi
|
|
|
|
|
A- I am trying to change the culture from a user control but the problem is that I can't overrride InitializeCulture() in user control. Any ideas?
B- Also all the examples I have seen are using the dropdown box's index change property, how can we use a button control to chang the culture? The problem is that button_click fires after InitializeCulture() ...
Thanks.
|
|
|
|
|
Even i have the same problem did u find any solution?
Renuka
|
|
|
|
|
Hi,
Can we implement sections in a datagrid?Like One sections having a set of columns and other section having other set of columns?
Can we have multiple column header for a column in a datagrid?
Please help in understanding.
Thank you,
Regards,
Deepa.
|
|
|
|
|
Hi,
Is it possible to make the horizontal gridlines of a datagrid invisible?How can we implement this in a datagrid?
Any valuable suggestion appreciated,
Thank you,
Regards,
Deepa.
|
|
|
|
|
Set GridLines=None property for grid
Cheers
Navaneeth!!
|
|
|
|
|
Hi Navaneeth,
I want to set the horizontal gridlines of a particular column in a datagrid invisible and not for the Grid as a whole.
Is there any workaround for this?
Thank you,
Regards,
Deepa.
|
|
|
|
|
Hi
I have bought a new computer and then I copied my web projects from the old computer to the new one.Then I made virtual directories for these web projects using IIS.
When I want to build an asp.net 2 project(a solution contains a website and a custom library) using visual studio 2005 I got 101 messages some of them is telling me :
Could not find schema information for the element 'http://schemas.microsoft.com/.NetConfiguration/v2.0:configuration'.
When I run the project I got the error message: The website declined to show this webpage.
When I want to open another web project(asp.net 1.1) using visual studio.net 2003 its telling me that the project is on an untrusted server(I don't remember the whole message) then I clicked yes then everything is working normally with this project.
Could any one tell me what could cause all these problems to happend?
-- modified at 2:12 Friday 16th February, 2007
I am too late but i will never give up
|
|
|
|
|
Hi,
Can anyone suggest how I can resize an IE window in the Page.Load event handler? I can't set the size of the window by the calling function using Javascript as it's called by a third party application. The web form that is opened really needs to open as a specific size.
Any ideas?
|
|
|
|
|
phm37 wrote: Can anyone suggest how I can resize an IE window in the Page.Load event handler?
What you are asking for is impossible. The Page_Load method is run on the server, and the window that you want to resize is on the client computer.
As you want to change the size of a window in the browser, you have to use client script. Use the window.resizeTo method to set the size of the window. This is not guaranteed to work, though. You can disallow scripts to resize windows in the browser settings.
---
single minded; short sighted; long gone;
|
|
|
|
|
I have a stored procedure that returns the name of a tab based on the provided key.
I need to get the tab_name out of the dataset table (called rows) and put it in the NewTab.Text property.
I tried this which doesnt work:
NewTab.Text = DataBinder.Eval("ReturnedDataset.Tables["rows"].DefaultView.[0].tab_name");
I've been reading the documentation but cant seem to get it to work. What should I be using ?
|
|
|
|
|
Did you try it without quotes?
digsy_ wrote:
NewTab.Text = DataBinder.Eval("ReturnedDataset.Tables["rows"].DefaultView.[0].tab_name");
Literal "ReturnedDataset.Tables["rows"].DefaultView.[0].tab_name" is passed to Eval function. You want to pass value in tab_name.
NewTab.Text = DataBinder.Eval(ReturnedDataset.Tables["rows"].DefaultView.[0].tab_name);
Just noticed... You example shouldn't even compile - You cannot nest quotes!
"Throughout human history, we have been dependent on machines to survive. Fate, it seems, is not without a sense of irony. " - Morpheus
|
|
|
|
|
I have the following database table. This is a list of department names.
DeptID Department
1 Administration
2 Information Technology
3 Product Development
4 Sales
5 Marketing
6 Partnerships
7 Contractor
From the Employees table I read in this record:
1001 7 4 Doe Jane M 12/24/2005 12:00:00 AM False
My problem is this: I’m using a web page to edit employee information. On this web form there are four drop down boxes, one each for Departments, Titles, Address Types and States. After I initialize the web page and populate the above mentioned drop down list with the necessary data. I want to take the employee record and set the drop down list to the right item in the list.
How can I make ASP.NET populate the dropdown lists based on the foreign ID number contained in the employee record?
I have a screen shot of what I want the data to look like in the web page, but I can't show it in this message.
Thank you,
Quecumber256
|
|
|
|
|
listControl.SelectedIndex = listControl.Items.IndexOf(listControl.Items.FindByValue(deptID))
Michael
I firmly believe that any man's finest hour, the greatest fulfillment of all that he holds dear, is that moment when he has worked his heart out in a good cause and lies exhausted on the field of battle - victorious.
Vince Lombardi (1913-1970)
|
|
|
|
|
hi,
can any one help me out...
i have developed one project in which the my contents are in the user control and am just exposing the click of the button to the page and by clicking on it a popup is opening. in the same user control i have a gridview which showing some data. but when i click on the button the popup opens the gridview content disappear for the case of mozila but working fine with IE.
can some one tell me the reason why is it so...
its urgent...
|
|
|
|
|
Warning - this is a dig at Microsoft!
Why on earth did MS use a variable called ToolTip to represent the title attribute of an image tag? Don't they know that only IE incorrectly uses this as a tooltip!?! Grrrrrr!!
/rant over
It always feels good to dis the big boys
|
|
|
|
|
Please forget about First One which I posted befere, And can you help me to solve the problem plase.
Server Error in '/' Application.
--------------------------------------------------------------------------------
Parser Error
Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately.
Parser Error Message: Could not load file or assembly 'Microsoft.ReportViewer.WebForms, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The system cannot find the file specified.
Source Error:
Line 1: <%@ Page Language="VB" MasterPageFile="~/MasterPage.master" AutoEventWireup="false" CodeFile="SingleDate.aspx.vb" Inherits="AuditLog_SingleDate" title="Untitled Page" %>
Line 2:
Line 3: <%@ Register Assembly="Microsoft.ReportViewer.WebForms, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
Line 4: Namespace="Microsoft.Reporting.WebForms" TagPrefix="rsweb" %>
Line 5: <asp:content id="Content1" contentplaceholderid="ContentPlaceHolder1" runat="Server">
Source File: /AuditLog/SingleDate.aspx Line: 3
Assembly Load Trace: The following information can be helpful to determine why the assembly 'Microsoft.ReportViewer.WebForms, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' could not be loaded.
WRN: Assembly binding logging is turned OFF.
To enable assembly bind failure logging, set the registry value [HKLM\Software\Microsoft\Fusion!EnableLog] (DWORD) to 1.
Note: There is some performance penalty associated with assembly bind failure logging.
To turn this feature off, remove the registry value [HKLM\Software\Microsoft\Fusion!EnableLog].
--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:2.0.50727.42; ASP.NET Version:2.0.50727.42
Sarfarj Ahmed
|
|
|
|
|
A little more background might be useful. What are trying to do? What have you done?
only two letters away from being an asset
|
|
|
|