I am using an ASP.NET AJAX Masked Edit Extender to format phone numbers
<asp:TextBox ID="tbPhoneNumber" runat="server" />
<ajaxToolkit:MaskedEditExtender TargetControlID="tbPhoneNumber" Mask="(999)999-9999" MaskType="Number"
InputDirection="LeftToRight" ClearMaskOnLostFocus="false" ClearTextOnInvalid="false" runat="server"…
hello friends,
I have this code to display jquery grid
<div>
<%= Html.Trirand().JQGrid(Model.OrdersGrid, "JQGrid1") %>
</div>
Server side I have this code..
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using Trirand.Web.Mvc;
using…
when loading up a solution in VS2008 I get:
An error was encountered while opening associated documents the last time this solution was loaded. Document load is being skipped during this solution load in order to avoid that error.
First time when i open it shout down immediatlym then next time when I open it popups…
Hi,
I have seen few UMl eclipse plugins,but I have nt find option to give project for UML diagram, which will generate class diagrams depends on oops relation to one class to other class,
can anybody tell me which plugin I use to generate UMl diagrams to my project ?
All,
This post is not a question; it’s more of asking for feed back and future request. The product team is always looking for feed back to facilitate the future direction of the product. Some of us as BizTalk Server MVP’s/partners get that privilege to work with the product team closely to give our feedback…
As usual I typed sudo Library/uninstall-devtools --mode=all
It uninstalled the first version (Beta) properly.
Tried the same thing on the older Stable Version which I have installed to "XCode Stable"
Getting this error
Use of uninitialized value $dir_name in substitution (s///) at…
My Application having TreePanel Element and I have to select the root node at the begining to add child node underit.
When I try to click on root node using its XPATH
String locator = "//div[@id='resultPropertyTree']/div/table/tbody/tr/td";
selenium.clickAt(locator,"0,1");
The…
Could you tell me which is the best MVVM pattern someone have to follow (like Prism). where can i found hands on exmaple. Actually i was little confused which one to follow?
Thnx
Hello friends, I have this code in my view this code will execute each users based on selection if I select 3 users this code will execute three times and displays three seperates in same page with differnt users..
Here is my code...
I used this code..
this is disabling only…
Hi I have created jdbc mysql connection. my program works fine for simple execution of query.
But if i run the same program for more than 10 hour and execute query then i receives the following mysql exception.
I have not used close() method anywhere. i created database…
I have a datatable. I am populating some values into that.
e.g.
DataTable dt =new DataTable();
dt.Columns.Add("Col1",typeof(int));
dt.Columns.Add("Col2",typeof(string));
dt.Columns.Add("Col3",typeof(DateTime));
dt.Columns.Add("Col4",typeof(bool));
for(int i=0;i<…
I have an excel like grid where values can be typed referencing other rows
To check for circular references when a new value is entered, i traverse the tree and create a list of values referenced thus far, if the current value is found in this list, i return an error…
Hi,
Here are my few questions
Can anyone explain what are the LINQ, Lambda, Anonymous Methods, Delegates meant?
How these 3 are different for each other?
Was one replaceable for another?
I didn't get any concrete answer when i did Googling
I used this code to select top 5 users from jquery grid on button click..
$('#myButton').click(function() {
$('#Grid input[type=checkbox]:lt(5)').attr('checked','checked');
});
its working fyn if I click the button its checking the check boxes..
my work is…
Hello Friends,
I am using this code to make enabling or disabling based on checkbox selection
$('#Pchk').change(function() {
var che =$('input[name=PMchk]').is(':checked');
if(!che)
{
…
I have a role based ASP.NET C# web application in which I am putting the menu object inside a session and I have a session timeout configured in the web.config as below:
<forms defaultUrl="Home.aspx" loginUrl="Login.aspx"…
Hello Friends,
I have one ActionResult method
public ActionResult StudentInfo(string id,string studentType)
{
var Info= Student.GetStudentInfo(Convert.ToInt32(e),studentType);
return…
I'm using following code to connect to a remote machine and try to execute one simple command on remote machine.
cat tt.pl
#!/usr/bin/perl
#use strict;
use warnings;
use Net::Telnet;
$telnet = new Net::Telnet (…