Mark Nischalke wrote:
you missed this "on this website"
Yes. I missed it.
Regards, TweakBird ***** Posted 50000th post in GIT O_O ******
Mark Nischalke wrote:
you missed this "on this website"
Yes. I missed it.
Regards, TweakBird ***** Posted 50000th post in GIT O_O ******
Congrats!. Best wishes. Happy new life :rose::rose:
Regards, Eswar ***** Posted 50000th post in GIT O_O ******
:laugh: :laugh: :thumbsup:
I think you are tired. Let have a :beer:
SChristmas wrote:
Most of the time these estimates are wrong since the estimate provider also not worked on that project from a long time.
:suss: Some body will watch you. ;)
May be He have 2 tips / tricks good rated(These points counted under Author).
Patrick Skelton wrote:
I can (and probably should) do what I want with DIVs
Go through this link[^]. I think it might be helpful. see this one also http://www.brunildo.org/test/img_center.html[^]
Patrick Skelton wrote:
there is no vertical space between neighbouring horizontal images;
Try this code
<table id="temp1" width="210px" cellpadding="0" cellspacing="0" border="0">
<tr>
<td>
<img id="Img4" src="1.JPG" height="100px" width="100px" />
</td>
<td>
<img id="Img1" src="1.JPG" height="100px" width="100px" />
</td>
</tr>
<tr><td colspan="2"> </td></tr>
<tr>
<td>
<img id="Img2" src="1.JPG" height="100px" width="100px" />
</td>
<td>
<img id="Img3" src="1.JPG" height="100px" width="100px" />
</td>
</tr>
</table>
Hiren Solanki wrote:
2)Share it over here and some humble people who really believe in repetition point emphasize really will upvote you, That way you will annoy the downvoter.
Good one.
Mugdha_Aditya wrote:
ike this means..how?? because i want syntax...where to add and ahta i have to add
For Web.Config concept See this http://msdn.microsoft.com/en-us/library/w7w4sb0w(v=VS.80).aspx[^]
Mugdha_Aditya wrote:
i check link given by you...but it has nt mention any where....any thing related to time out
Link is only about connection strings with respect to different databases & different parameters. Are you want sample syntax of web.config file?
Use in Web.Config like this
Go through this link, You can get good idea about connection strings. connectionstrings[^] P.S: Check why that procedure taking two much time (10 minutes). Happy Coding :)
Regards, Eswar
Any_India wrote:
integrate my asp.net application with SAP.
Try SAP.Net SDK. Have a look Here sap-businessobjects-administration-software-development-kit-sdk[^] SAP_Business_One_SDK[^]
goldsoft wrote:
but still i see the same records
Post your code here.
Hiren Solanki wrote:
Some body has downvoted all my answers
Yes Hiren, 4 days(not exactly) some body downvoted my 10 answers (In those some answers had already 5's also).I got 10 (-4)'s. At That time am not happy :( :(. If He(who downvoted) mention reason for downvote, then we will learn something from that. :(( :((
Gali1978 wrote:
but I constantly see the same records, why ?
May be several reasons(Not exactly) .like Table contains duplicate rows (just check it once), Check Gridview Pager Settings (Page Size, Paging Modes). If you post your modified code here, i will check it.
Gali1978 wrote:
The GridView 'GridView1' fired event PageIndexChanging which wasn't handled. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Write a method for binding of Gridview
Private void BindGridView()
{
SQL = "SELECT id,Fname,Lname FROM MEN";
dsView = new DataSet();
adp = new SqlDataAdapter(SQL, Conn);
adp.Fill(dsView, "MEN");
adp.Dispose();
GridView1.DataSource = dsView.Tables[0].DefaultView;
GridView1.DataBind();
}
You Need Handle Gridview_pageIndexing event of GridView like this.
GridView1_PageIndexChanging(object sender, GridViewPageEventArgs e)
{
GridView1.PageIndex = e.NewPageIndex;
BindGridView();
}
OR After First Retrial of Data -- Put The DataSet into ViewState Or Session.(Here also Gridview1_PageIndexChanging event is Required. In this event bind the gridview with DataSet(i.e DataSet from ViewState or Session)) See This Link Gridview in ASP.NET 2.0[^] I hope you issue will clear. Try this, Post here if you face any problem.
Hi See This Link[^], In this post am tried to edit for formatting of Xaml code (WPF) with different options(like aspnet, xml and default tag). I failed to set formating. Here i getting (forum message). see below code.
<ItemsControl ItemsSource="{Binding Path=MainCol}" >
<ItemsControl.ItemTemplate>
<DataTemplate>
<TextBlock Text="{Binding Path=Id}" ></TextBlock>
<TextBlock Text="{Binding Path=Name}" ></TextBlock>
<!-- How to show Description and Amount here by looking up the Id value -->
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
Why formatting is not applied in Q & A Section.? is this bug or else(my mistake)?
Regards, Eswar
Try to this in Page_Load, it works GridView1.SelectedIndex = -1;
Have a look on this also cross-site-scripting-in-asp-net.aspx[^]