hi everyone,
How to make the datagrid with no data when a user click's the button.I have a page with 2 buttons one is Load Data and Clear Data.If the user click's the CLick button will the data in the datagrid will disppear or not?Am using DataSet.
I have used ds.Tables.Clear() in that Click code .Please help me
...
How i do check whether DateTime data type variable is null/empty in asp.net ?
...
I have textbox1, textbox2 , button1, button2 and linkbutton1 i have added custom validator to that textbox1 and textbox2 and keeping the same valiadtion group to textbox1, button1.
Another same validation group to textbox2 and button2.
Custom validator is for invalidate character i.e # & < >.
If i click on button1, button2 then it gi...
I have a repeater that displays a custom user control on a form multiple times as follows:
<asp:Repeater runat="server" ID="MyRepeater"
ondatabinding="MyRepeater_DataBinding" >
<ItemTemplate>
<a name='<%# Eval("[\"Key\"]") %>' style="display: none;"></a>
<uc1:MyControl ID="Control1" runat="server"
...
Hi, I am trying to send an outlook appointment from an ASP.NET website. I have found the code for sending this here, and tried to implement it. But for some unknown reason it is not working properly.
My server onto which the code is running is in US/Central timezone. I want to send this appointment to clients who are in London. So there...
Hi,
I want to add a button to my user control in SilverLight 4.0 application which will open a new browser window with an aspx in it when it is clicked.
How can I achieve this, can you please advice?
Additionaly, can I lock the SL application until this new window is closed (Alike a modal dialog)?
thanks!
...
Hi, I have two projects in the same solution:
My.Solution.name.with.dots
BLL
Web
in the BLL project, I create a class that need to get a global resx value from RESX file that is placed in the Web project. Is it possible ?
BLL can't have a reference to Web project because of the project dependency
...
Hi
I am trying to insert an array into SQL with no luck. I get the string from a GPRS device that looks like this:
/WeightBridge.aspx?ReadeID=A1B5A0F5C4E4A1B5A0F5C4E4&TagID=45B6C56A90B645B6C56A90B6,A47B1256A45F0843,B49B1256A45F08FF,30 SEP 2010 21:33:59,I,&Custom=Vehicle Num
All I want to do is to split the TagID array and insert it ...
I want code to display Twitter tweets in an ASP.Net webpage. I also require code for posting new tweets in Twitter website. The tweets that are displayed should be of a specific topic. It would be great if the code is based on Yedda Twitter library since we have downloaded it and started researching about it to implement in our ASP.Net w...
I'm using CreateUserWizard for creating an user but asp.net automatically add user to ASP.NET database
I want to add user in my database and in my customer table.
I have tried these code as peer below but nothing happened
private MembershipUser _CurrentUser = null;
private MembershipUser CurrentUser
{
get
{
...
i am getting following error when i am running AJAX enabled ASP.Net application
The control with ID 'FilteredTextBoxExtender1' requires a ScriptManager on the page. The ScriptManager must appear before any controls that need it.
even though i have ScriptManager in my page
what wrong i am doing please give suggestions
thanks in advanc...
Is it possible to disable the browserCaps functionality in ASP.NET?
I wish my site to be served reliably and exactly as I have it defined to all browsers regardless of their capabilities.
If their browser can't support the site, that's their problem. My site should not be some how attempting to degrade itself to accommodate the defun...
I would like to implement the following tab menu in my asp.net web application:
tab menu link
important are the two rows in the main menu, for exc. when you click on "Consumer" there are certain itmes in the second row (Computer & Peripherals) and so on...
Is this possible with the asp.net menu control, or how would you implement this...
i want that while writing some text in an asp.net textbox, a listview page should open which will show the related topics containing that text just below that txtbox .
i want to implement something as in stackoverflow title txtbox how it it showing related topics
...
i am calling a function which is inside Homescroll.ascx.cs from Homescroll.ascx
so i wrote on Homescroll.ascx as
<% Response.Write(scroll()); %>
but all this is in update panel,and i am getting errors.
so is their any other way to call function from homescroll.ascx to homescroll.ascx.cs,instead of response.write();
...
I have a simple Web Service method defined as:
[WebMethod]
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
public string MyWebMethod(string foo, string bar)
{
// DataContractJsonSerializer to deserialize foo and bar to
// their respective FooClass and BarClass objects.
return "{\"Message\":\"Everything is a-ok!\"}";
}...
Hi,
I am having fileupload control having its "multiple" attribute equals to "multiple". I am facing a weird issue in CHROME browser. The isse is that onchange event of file upload control is not firing for more than 12 files selected at once. The event is firing if I have 10 files selected at once. On FF and Safari it is working fine. ...
I want to create a mvc helper method for the jquery UI accordian widget.
Any advice on how I should design it for re-usability?
...
If I browse to an asp.net web page that has the following in the page load, how long will the thread continue to run for after I close the browser? I would assume it would just finish on its own, but I'm not sure if it will terminate when the session ends, or something like that.
protected void Page_Load(object sender, EventArgs e) {
...
hey i have a query.... i have extracted data from database..currently that information is in a string variable...my point is to pass that string value into a gridview in the application..i have already created the gridview with checkbox list fitted into it...on inserting the values will the gridview will expand dynamically ??..if no the...