Click here to Skip to main content
15,891,951 members

Comments by Sagar Khairnar 55 (Top 15 by date)

Sagar Khairnar 55 3-Jan-17 7:36am View    
Hi,
Thank you for your feedback.
To be in deep related to my issue,
I have created an ASP.NET Web application (Not using MVC framework).
In that I have added bundle configuration(System.Web.Optimization) and Web API Register Routes on Application start.
UI is design with AngularJs and calling Web-API Controller.

This application runs completly fine on local machine.
But when I publish the code and deploy on IIS, bundle configuration is not working on that.

Waiting for you feedback.
Sagar Khairnar 55 19-Apr-15 4:14am View    
Hi sir,
Thanks for your support.
Can you please explain the last paragraph (Reconfigure...if nothing else) in detail, I am bit confuse in getting the solution, also how to use two web.config or reconfigure development system!
Sagar Khairnar 55 7-Oct-10 8:16am View    
hi,
now i can display the listview on the form binded to the textbox.. i have just added few line to display that...
in text change event i did... the following code

try
{
fillListView();
listView1.Visible = true;
foundItem = listView1.FindItemWithText(this.Text);
int i = listView1.FindItemWithText(this.Text).Index;
if (foundItem != null)
{
if (listView1.Items.Contains(foundItem))
{
listView1.Items[i].Selected = true;
listView1.Focus();
listView1.Parent = this;
listView1.BringToFront();
this.Parent.Controls.Add(listView1);
}
else
listView1.Hide();
}
}
thus my multi column combo box is ready to use..
Sagar Khairnar 55 18-Sep-10 8:13am View    
Thank u Sir,

Atlast i run my code sucessfully..

Thank u for your True Suggestion...
Sagar Khairnar 55 18-Sep-10 8:01am View    
sir,
i got my mistake and now i change the code which is working without error. but the output is given in one coloum. as
SUPERVISOR
M??y?
A?uX
AJIT

i want it as
SUPERVISOR M??y?
AJIT A?uX

MY CODE IS BELOW
PLS TELL ME WHAT CHANGES SHOULD I DO
for (int i = 0; i < str.Length; i++)
{
string t = str[i].Substring(0, 10);
dt.Rows.Add(t);
string t1 = str[i].Substring(10);
dt.Rows.Add(t1);
}